:root {
  --blue-deep: #063a8f;
  --blue: #1b76fe;
  --blue-mid: #3d9fff;
  --blue-light: #5ec4ff;
  --blue-soft: #e8f4fc;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --max: 520px;
  --font-brand: "Outfit", "Noto Sans SC", sans-serif;
  --font-display: "Noto Serif SC", serif;
  --font-body: "Noto Sans SC", "PingFang SC", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #d9ecfb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: 0; cursor: pointer; background: none; }
ul { list-style: none; }

.fx-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: floatOrb 12s ease-in-out infinite;
}
.fx-orb--a {
  width: 280px; height: 280px;
  left: -80px; top: 10%;
  background: radial-gradient(circle, #5ec4ff, transparent 70%);
}
.fx-orb--b {
  width: 320px; height: 320px;
  right: -100px; top: 42%;
  background: radial-gradient(circle, #1b76fe, transparent 70%);
  animation-delay: -4s;
}
.fx-orb--c {
  width: 240px; height: 240px;
  left: 20%; bottom: 8%;
  background: radial-gradient(circle, #93c5fd, transparent 70%);
  animation-delay: -7s;
}

.page {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(232, 244, 252, 0.92), rgba(245, 249, 255, 0.96));
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(232, 244, 252, 0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(27, 118, 254, 0.1);
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo__img {
  width: 40px; height: 40px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(27, 118, 254, 0.25);
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-deep);
  letter-spacing: 0.06em;
}
.header__cta {
  position: relative;
  overflow: hidden;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b76fe, #52b8ff);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(27, 118, 254, 0.35);
}
.header__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 3.6s ease-in-out infinite;
}

/* Hero banner */
.hero-banner {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}
.hero-banner__track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.hero-slide__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s linear;
}
.hero-slide.is-active .hero-slide__media {
  transform: scale(1.12);
}
.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 40, 100, 0.72) 0%, rgba(6, 40, 100, 0.2) 55%, rgba(6, 40, 100, 0.55) 100%),
    linear-gradient(180deg, transparent 30%, rgba(4, 24, 70, 0.7) 100%);
}
.hero-slide__copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 52px;
  color: var(--white);
  z-index: 2;
}
.hero-slide__tag {
  display: inline-flex;
  padding: 4px 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-slide__copy h1,
.hero-slide__copy h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.hero-slide__copy p {
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
}
.hero-banner__nav {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-banner__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}
.hero-banner__dots {
  display: flex;
  gap: 6px;
}
.hero-banner__dots button {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  transition: width 0.3s, background 0.3s;
}
.hero-banner__dots button.is-on {
  width: 18px;
  background: #fff;
}

/* Sections */
.section { padding: 28px 14px 6px; }
.section-head { text-align: center; margin-bottom: 16px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.05em;
}
.section-head__en {
  margin-top: 4px;
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--blue-mid);
  font-weight: 700;
  text-transform: uppercase;
}

/* —— 板块2：品牌核心定位（同方案一） —— */
.section--brand {
  padding-top: 24px;
}
.brand-slogan {
  text-align: center;
  margin: -6px 8px 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 500;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.brand-card {
  text-align: center;
  padding: 16px 8px 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(27, 118, 254, 0.08);
  box-shadow: 0 8px 20px rgba(13, 47, 120, 0.06);
}
.brand-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #1b76fe, #52b8ff);
  box-shadow: 0 8px 18px rgba(27, 118, 254, 0.28);
}
.brand-card__icon svg {
  width: 22px;
  height: 22px;
}
.brand-card h3 {
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.brand-card p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Course */
.course-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(13, 47, 120, 0.08);
}
.course-switch__btn {
  position: relative;
  z-index: 1;
  padding: 12px 6px;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--muted);
  transition: color 0.25s;
}
.course-switch__btn.is-on { color: #fff; }
.course-switch__glider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 11px;
  background: linear-gradient(90deg, #1b76fe, #52b8ff);
  box-shadow: 0 8px 18px rgba(27, 118, 254, 0.3);
  transition: transform 0.35s var(--ease);
}
.course-switch__glider.is-right { transform: translateX(100%); }
.course-panel { display: none; }
.course-panel.is-on {
  display: block;
  animation: panelIn 0.4s var(--ease);
}
.glass-card {
  padding: 18px 16px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 14px 34px rgba(13, 47, 120, 0.1);
}
.glass-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.glass-card__top h3 {
  font-size: 1.08rem;
  color: var(--ink);
}
.pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.pill--hot { background: #fff0ee; color: #e85a58; }
.pill--feat { background: #ebf4ff; color: var(--blue); }
.glass-card__meta {
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ebf4ff, #f5f9ff);
}
.glass-card__meta span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.glass-card__meta p {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.shine-list { display: grid; gap: 10px; }
.shine-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 12px;
  background: rgba(248, 251, 255, 0.9);
  transition: transform 0.25s var(--ease);
}
.shine-list li:hover { transform: translateX(4px); }
.shine-list i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-brand);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #1b76fe, #52b8ff);
}
.shine-list p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-top: 6px;
  line-height: 1.5;
}

/* Learning path */
.path-lead {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: -6px 8px 16px;
  line-height: 1.55;
}
.path-rail {
  position: relative;
  display: grid;
  gap: 12px;
}
.path-rail::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 18px;
  bottom: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5ec4ff, #1b76fe 55%, #063a8f);
  box-shadow: 0 0 12px rgba(27, 118, 254, 0.28);
}
.path-node {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
.path-node__dot {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #1b76fe, #52b8ff);
  box-shadow:
    0 0 0 5px rgba(232, 244, 252, 0.95),
    0 8px 16px rgba(27, 118, 254, 0.32);
}
.path-node__dot--end {
  background: linear-gradient(145deg, #063a8f, #1b76fe);
}
.path-card {
  position: relative;
  overflow: hidden;
  padding: 14px 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(13, 47, 120, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13, 47, 120, 0.14);
}
.path-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.path-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #ebf4ff, #f5f9ff);
}
.path-card__icon svg {
  width: 20px;
  height: 20px;
}
.path-card__season {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
}
.path-card__badge {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  color: #c47a12;
  background: #fff4d8;
}
.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
  color: var(--ink);
}
.path-card p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.path-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.path-card__tags li {
  padding: 4px 9px;
  border-radius: 999px;
  background: #ebf4ff;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 600;
}
.path-card--free {
  background:
    linear-gradient(135deg, rgba(255, 244, 216, 0.55), rgba(235, 244, 255, 0.9)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(196, 122, 18, 0.18);
}
.path-card--free .path-card__icon {
  color: #c47a12;
  background: #fff4d8;
}
.path-card--end {
  background: linear-gradient(150deg, #0a52c4, #1b76fe 55%, #3d9fff);
  border: none;
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 47, 120, 0.28);
}
.path-card--end .path-card__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.path-card--end .path-card__season { color: rgba(255, 255, 255, 0.82); }
.path-card--end h3 { color: #fff; }
.path-card--end p { color: rgba(255, 255, 255, 0.92); }
.path-card--end .path-card__tags li {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Advantages masonry */
.adv-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.adv-tile {
  position: relative;
  overflow: hidden;
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 24px rgba(13, 47, 120, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.adv-tile:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 32px rgba(13, 47, 120, 0.14);
}
.adv-tile--lg {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(27,118,254,0.08), rgba(94,196,255,0.05)),
    rgba(255,255,255,0.9);
}
.adv-tile--accent {
  background: linear-gradient(150deg, #0a52c4, #1b76fe 55%, #3d9fff);
  color: #fff;
  border: none;
}
.adv-tile__index {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-mid);
}
.adv-tile--accent .adv-tile__index { color: rgba(255,255,255,0.7); }
.adv-tile h3 {
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.adv-tile p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}
.adv-tile--accent p { color: rgba(255,255,255,0.9); }
.adv-tile--accent h3 { color: #fff; }

/* Features */
.feature-stack { display: grid; gap: 10px; }
.fx-feature {
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 12px 28px rgba(13, 47, 120, 0.1);
  overflow: hidden;
}
.fx-feature--lead {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 170px;
}
.fx-feature__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(180deg, #063a8f, #1b76fe);
}
.fx-feature__side span {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 800;
}
.fx-feature__side em {
  font-style: normal;
  writing-mode: vertical-rl;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.88;
}
.fx-feature__body { padding: 16px 14px; }
.fx-feature__body h3,
.fx-feature--mini h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.fx-feature__body p,
.fx-feature--mini p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.fx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.fx-tags li {
  padding: 4px 9px;
  border-radius: 999px;
  background: #ebf4ff;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
}
.feature-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fx-feature--mini {
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
}
.fx-feature__no {
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-mid);
  margin-bottom: 8px;
}
.fx-feature--glow {
  background: linear-gradient(155deg, #063a8f, #1b76fe 50%, #3d9fff);
  border: none;
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 47, 120, 0.28);
}
.fx-feature--glow .fx-feature__no { color: rgba(255,255,255,0.75); }
.fx-feature--glow h3 { color: #fff; }
.fx-feature--glow p { color: rgba(255,255,255,0.9); }
.fx-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}
.fx-steps span {
  flex: 0 0 calc((100% - 15px) / 4);
  text-align: center;
  padding: 7px 0;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
}
.fx-steps span:nth-child(n + 5) {
  flex-basis: calc((100% - 10px) / 3);
}
.fx-steps .is-end {
  background: #fff;
  color: var(--blue);
  border-color: transparent;
  animation: pulseSoft 2.2s ease-in-out infinite;
}

/* Cases */
.cases-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: -4px 0 14px;
}
.cases-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(13, 47, 120, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  transform-style: preserve-3d;
}
.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.case-card:hover {
  box-shadow: 0 18px 36px rgba(13, 47, 120, 0.18);
}
.case-card:hover img { transform: scale(1.08); }
.case-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 10px 10px;
  font-size: 0.75rem;
  font-weight: 650;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(6, 30, 80, 0.78));
}

.footer {
  margin-top: 18px;
  padding: 28px 16px 20px;
  text-align: center;
}
.footer p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

.dock {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 50;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 -10px 30px rgba(13, 47, 120, 0.14);
}
.dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-weight: 700;
  font-size: 0.94rem;
}
.dock__chat {
  background: linear-gradient(90deg, #1b76fe, #52b8ff);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dock__chat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: shine 2.8s ease-in-out infinite;
}
.dock__tel { color: var(--blue); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal-child.is-in {
  opacity: 1;
  transform: none;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -24px); }
}
@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulseSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (min-width: 560px) {
  body { background: #c7e3f8; }
  .page {
    box-shadow: 0 0 0 1px rgba(27,118,254,0.06), 0 28px 80px rgba(13,47,120,0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal, .reveal-child { opacity: 1; transform: none; }
}
