:root {
  --page-bg: #f5f8ff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.76);
  --navy: #102143;
  --navy-soft: #20365e;
  --text: #18233a;
  --muted: #69758d;
  --blue: #2362df;
  --blue-deep: #1749b7;
  --blue-light: #dfeaff;
  --cyan: #5bc8e8;
  --green: #3ba879;
  --border: rgba(35, 68, 126, 0.12);
  --border-strong: rgba(35, 68, 126, 0.19);
  --shadow-sm: 0 12px 30px rgba(34, 65, 124, 0.08);
  --shadow-md: 0 24px 60px rgba(30, 62, 122, 0.12);
  --shadow-lg: 0 36px 90px rgba(20, 48, 103, 0.17);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --content-width: 1180px;
  --header-height: 78px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page-bg);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 248, 255, 0) 48%);
  content: "";
  pointer-events: none;
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(35, 98, 223, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1001;
  padding: 10px 16px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 4px;
  background: rgba(35, 98, 223, 0.08);
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 18px rgba(35, 98, 223, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.ambient-orb-one {
  top: -220px;
  right: -180px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(91, 200, 232, 0.2) 0%, rgba(91, 200, 232, 0) 70%);
}

.ambient-orb-two {
  top: 580px;
  left: -340px;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(35, 98, 223, 0.12) 0%, rgba(35, 98, 223, 0) 72%);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(28, 66, 135, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 66, 135, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  padding-top: 12px;
  transition: padding 260ms ease;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1240px);
  height: 66px;
  margin-inline: auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header.is-scrolled .header-inner,
.site-header.menu-open .header-inner {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(248, 251, 255, 0.82);
  box-shadow: 0 14px 42px rgba(30, 65, 126, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  border-radius: 12px;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  box-shadow: 0 10px 22px rgba(35, 98, 223, 0.24);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: flex;
  min-width: 0;
  margin-left: 11px;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 12px;
  color: #59677e;
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta).is-active {
  color: var(--blue-deep);
  background: rgba(35, 98, 223, 0.055);
}

.site-nav a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  margin-left: 7px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(16, 33, 67, 0.16);
}

.site-nav .nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: rgba(35, 98, 223, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding-top: 148px;
  padding-bottom: 44px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 54px;
  min-height: 620px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(35, 98, 223, 0.1);
}

.hero-title {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 5.2vw, 74px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero-name {
  display: block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 0.29em;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-slogan {
  display: block;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: #5f6c84;
  font-size: 18px;
  line-height: 1.9;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, background-color 220ms ease,
    border-color 220ms ease, color 220ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  margin-left: 9px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 32px rgba(35, 98, 223, 0.25);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(35, 98, 223, 0.3);
}

.button-secondary {
  border-color: var(--border-strong);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(32, 62, 118, 0.07);
}

.button-secondary:hover {
  border-color: rgba(35, 98, 223, 0.32);
  color: var(--blue-deep);
  background: #ffffff;
}

.button-large {
  min-height: 58px;
  padding-inline: 29px;
  font-size: 16px;
}

.hero-points {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 38px 0 0;
  padding: 0;
  color: #4c5b74;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  flex-wrap: wrap;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points span {
  color: #97a4b8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-stage {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  width: min(100%, 520px);
  height: 520px;
  margin-left: auto;
  perspective: 1100px;
}

.visual-stage::before {
  position: absolute;
  top: 78px;
  right: 24px;
  width: 385px;
  height: 385px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.95), rgba(216, 232, 255, 0.74));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.88), 0 40px 90px rgba(43, 84, 158, 0.16);
  content: "";
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(35, 98, 223, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 8px 18px rgba(42, 120, 176, 0.24);
  content: "";
}

.orbit-one {
  top: 34px;
  right: -10px;
  width: 435px;
  height: 435px;
  animation: orbitSpin 18s linear infinite;
}

.orbit-one::after {
  top: 72px;
  left: 20px;
}

.orbit-two {
  right: 67px;
  bottom: 12px;
  width: 310px;
  height: 310px;
  border-style: dashed;
  animation: orbitSpinReverse 24s linear infinite;
}

.orbit-two::after {
  right: 24px;
  bottom: 36px;
  width: 9px;
  height: 9px;
  border-width: 3px;
  background: var(--blue);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

.portrait-card {
  position: absolute;
  top: 58px;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 320px;
  height: 394px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 42px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(235, 243, 255, 0.87));
  box-shadow: 0 38px 80px rgba(29, 65, 130, 0.18), inset 0 1px 0 #ffffff;
  transform: translateX(-50%) rotateX(calc(var(--pointer-y) * -4deg))
    rotateY(calc(var(--pointer-x) * 5deg)) translate3d(calc(var(--pointer-x) * 8px), calc(var(--pointer-y) * 8px), 0);
  transition: transform 280ms ease-out;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.portrait-glow {
  position: absolute;
  top: 34px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(35, 98, 223, 0.16);
  filter: blur(34px);
}

.portrait-frame {
  position: relative;
  display: grid;
  width: 226px;
  height: 250px;
  overflow: hidden;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.84);
  border-radius: 66px 66px 90px 90px;
  background: linear-gradient(150deg, #dbeaff, #aac8ff 58%, #7ca9f7);
  box-shadow: 0 24px 48px rgba(35, 98, 223, 0.2), inset 0 0 0 1px rgba(35, 98, 223, 0.12);
}

.portrait-frame::before {
  position: absolute;
  top: -28%;
  left: -42%;
  width: 110%;
  height: 112%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transform: rotate(-24deg);
}

.portrait-frame img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-initials {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  color: #ffffff;
  font-size: 92px;
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 12px 28px rgba(32, 81, 172, 0.24);
}

.portrait-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 10px 14px;
  border: 1px solid rgba(65, 113, 191, 0.12);
  border-radius: 999px;
  color: #3e506e;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(42, 75, 135, 0.07);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(59, 168, 121, 0.12);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(31, 63, 123, 0.13);
  transform: translate3d(calc(var(--pointer-x) * -18px), calc(var(--pointer-y) * -18px), 0);
  transition: transform 280ms ease-out;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.floating-note span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.floating-note strong {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.floating-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.floating-note-top {
  top: 90px;
  left: -10px;
}

.floating-note-bottom {
  right: -18px;
  bottom: 60px;
}

.note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(145deg, #46be8a, #2e9c70);
  box-shadow: 0 8px 16px rgba(59, 168, 121, 0.22);
  font-size: 16px;
  font-weight: 850;
}

.note-icon-blue {
  background: linear-gradient(145deg, #5ea6ff, #2963dd);
  box-shadow: 0 8px 16px rgba(35, 98, 223, 0.22);
}

.stats-strip {
  position: relative;
  z-index: 5;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  position: relative;
  padding: 20px 24px;
  text-align: center;
}

.stat-card:not(:last-child)::after {
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: var(--border);
  content: "";
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-value > span:first-child {
  font-size: 32px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.stat-suffix {
  margin-left: 3px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
}

.stat-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.content-section {
  padding-top: 116px;
  padding-bottom: 116px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 840;
  letter-spacing: -0.045em;
  line-height: 1.2;
  text-wrap: balance;
}

.section-intro {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  text-wrap: pretty;
}

.section-heading.centered .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.section-heading-row {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 60px;
}

.section-heading-row .section-intro {
  margin: 0 0 7px;
}

.about-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 28px;
}

.about-story,
.about-highlight {
  border-radius: var(--radius-lg);
}

.about-story {
  position: relative;
  padding: 48px 54px 48px 62px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 24px;
  color: rgba(35, 98, 223, 0.14);
  font-family: Georgia, serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
}

.about-paragraphs {
  position: relative;
  z-index: 1;
}

.about-paragraphs p {
  margin: 0;
  color: #4d5c75;
  font-size: 16px;
  line-height: 2;
}

.about-paragraphs p + p {
  margin-top: 21px;
}

.about-highlight {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 50px 42px;
  color: #ffffff;
  background: linear-gradient(150deg, #1d4eaa, #102143 82%);
  box-shadow: 0 28px 65px rgba(16, 33, 67, 0.24);
  flex-direction: column;
  justify-content: center;
}

.about-highlight::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(91, 200, 232, 0.13);
  content: "";
}

.about-highlight::after {
  position: absolute;
  right: 32px;
  bottom: 26px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.highlight-label {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #98c4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.highlight-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.65;
}

.highlight-line {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 3px;
  margin: 28px 0 22px;
  border-radius: 99px;
  background: var(--cyan);
}

.highlight-caption {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.8;
}

.experience-section {
  padding-top: 104px;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 18px;
  bottom: 30px;
  left: 43px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(35, 98, 223, 0.32), rgba(35, 98, 223, 0.04));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0;
}

.timeline-item + .timeline-item {
  margin-top: 26px;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  padding-top: 35px;
}

.timeline-marker span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 36px;
  border: 4px solid var(--page-bg);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 98, 223, 0.13);
}

.timeline-card {
  padding: 31px 36px 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.timeline-item:hover .timeline-card {
  border-color: rgba(35, 98, 223, 0.2);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 22px 50px rgba(30, 62, 122, 0.11);
}

.timeline-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.timeline-period {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.tag,
.role-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.tag {
  padding: 7px 10px;
  color: #4a638e;
  background: #edf3fd;
}

.timeline-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.timeline-title-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.role-pill {
  padding: 7px 11px;
  color: var(--blue-deep);
  background: rgba(35, 98, 223, 0.09);
}

.experience-details {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.experience-detail {
  padding-left: 17px;
  border-left: 2px solid #e7eef9;
}

.experience-detail > span {
  display: block;
  margin-bottom: 8px;
  color: #8a96a9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.experience-detail p {
  margin: 0;
  color: #59677f;
  font-size: 13px;
  line-height: 1.85;
}

.outcome-detail {
  border-left-color: rgba(59, 168, 121, 0.45);
}

.outcome-detail > span {
  color: var(--green);
}

.outcome-detail p {
  color: #3f5f54;
}

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

.trait-card {
  position: relative;
  min-height: 306px;
  overflow: hidden;
  padding: 31px 27px 29px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease, border-color 280ms ease,
    background-color 280ms ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trait-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(35, 98, 223, 0.05);
  content: "";
}

.trait-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 19px;
  color: var(--blue);
  background: linear-gradient(145deg, #eef5ff, #dce9ff);
  box-shadow: inset 0 0 0 1px rgba(35, 98, 223, 0.08);
}

.trait-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trait-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.trait-card p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: #69758b;
  font-size: 13px;
  line-height: 1.9;
}

.trait-index {
  position: absolute;
  top: 28px;
  right: 24px;
  color: rgba(35, 98, 223, 0.23);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.promises-section {
  padding-top: 92px;
}

.promises-panel {
  position: relative;
  overflow: hidden;
  padding: 82px 70px 70px;
  border-radius: 42px;
  background: linear-gradient(145deg, #173d85 0%, #102143 72%);
  box-shadow: 0 38px 90px rgba(16, 33, 67, 0.22);
}

.promises-panel::before {
  position: absolute;
  top: -210px;
  right: -160px;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 200, 232, 0.2), rgba(91, 200, 232, 0) 70%);
  content: "";
}

.promises-panel::after {
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.promises-panel .section-heading,
.promises-grid {
  position: relative;
  z-index: 1;
}

.promises-panel .eyebrow-light {
  color: #8ec5ff;
}

.promises-panel .section-heading h2 {
  color: #ffffff;
}

.promises-panel .section-intro {
  color: rgba(230, 239, 255, 0.67);
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promise-card {
  position: relative;
  min-height: 324px;
  overflow: hidden;
  padding: 31px 29px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 280ms var(--ease-out), background-color 280ms ease,
    border-color 280ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.promise-number {
  margin-bottom: 44px;
  color: #7eb8ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.promise-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.promise-card > p {
  margin: 15px 0 0;
  color: rgba(229, 238, 255, 0.67);
  font-size: 13px;
  line-height: 1.9;
}

.promise-footer {
  position: absolute;
  right: 29px;
  bottom: 26px;
  left: 29px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promise-footer span {
  width: 25px;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
}

.promise-footer small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.evidence-section {
  padding-top: 76px;
  padding-bottom: 72px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.evidence-card {
  position: relative;
  display: block;
  grid-column: span 6;
  height: 350px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 28px;
  color: #ffffff;
  background: #dce6f5;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  text-align: left;
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.evidence-card:nth-child(4n + 1),
.evidence-card:nth-child(4n + 4) {
  grid-column: span 7;
}

.evidence-card:nth-child(4n + 2),
.evidence-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.evidence-image {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(145deg, #dce9ff, #b9cff4);
}

.evidence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.evidence-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 23, 50, 0.84), rgba(8, 23, 50, 0.05) 68%);
  content: "";
  pointer-events: none;
}

.evidence-overlay {
  position: absolute;
  right: 25px;
  bottom: 23px;
  left: 25px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.evidence-date {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.evidence-overlay strong {
  color: #ffffff;
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-shadow: 0 4px 18px rgba(5, 18, 43, 0.32);
}

.evidence-overlay small {
  display: -webkit-box;
  max-width: 680px;
  overflow: hidden;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.evidence-card:hover {
  z-index: 2;
  box-shadow: 0 28px 62px rgba(20, 48, 103, 0.2);
  transform: translateY(-6px);
}

.evidence-card:hover .evidence-image img {
  transform: scale(1.045);
}

.vote-section {
  padding-top: 76px;
  padding-bottom: 94px;
}

body.lightbox-open {
  overflow: hidden;
}

.evidence-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  padding: 36px 88px;
  place-items: center;
  background: rgba(6, 17, 38, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lightbox-figure {
  display: flex;
  width: min(1040px, 100%);
  max-height: calc(100vh - 72px);
  margin: 0;
  align-items: center;
  flex-direction: column;
}

.lightbox-figure > img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 220px);
  border-radius: 22px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-caption {
  width: min(720px, 100%);
  margin-top: 19px;
  color: #ffffff;
  text-align: center;
}

.lightbox-caption > span {
  color: #8ec5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.lightbox-caption h3 {
  margin: 7px 0 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.lightbox-caption p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.7;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.vote-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 395px;
  align-items: center;
  padding: 60px 68px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(229, 239, 255, 0.85));
  box-shadow: var(--shadow-lg);
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 50px;
}

.vote-card::before {
  position: absolute;
  top: -160px;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 200, 232, 0.18), rgba(91, 200, 232, 0) 68%);
  content: "";
}

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

.vote-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.2;
  text-wrap: balance;
}

.vote-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 21px 0 30px;
  color: #637089;
  font-size: 15px;
  line-height: 1.9;
}

.vote-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 250px;
  height: 250px;
  margin-inline: auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #286ee8, #143e91);
  box-shadow: 0 26px 60px rgba(35, 98, 223, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.vote-mark > span {
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-size: 76px;
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(10, 35, 85, 0.28);
}

.vote-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.vote-ring-one {
  inset: 21px;
}

.vote-ring-two {
  inset: 43px;
  border-style: dashed;
  animation: orbitSpin 22s linear infinite;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 0;
  padding-bottom: 42px;
  color: #8490a4;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.demo-notice {
  padding: 7px 11px;
  border-radius: 999px;
  color: #92631a;
  background: rgba(255, 226, 158, 0.4);
  font-weight: 700;
}

.noscript-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  font-size: 13px;
}

html[data-js="true"] .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

html[data-js="true"] .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.trait-card:hover,
.promise-card:hover {
  border-color: rgba(35, 98, 223, 0.25);
  transform: translateY(-7px);
}

.trait-card:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 56px rgba(30, 62, 122, 0.14);
}

.promise-card:hover {
  border-color: rgba(126, 184, 255, 0.36);
  background: rgba(255, 255, 255, 0.115);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(48px, 5.8vw, 66px);
  }

  .visual-stage {
    width: 460px;
    height: 500px;
  }

  .visual-stage::before {
    right: 15px;
    width: 360px;
    height: 360px;
  }

  .floating-note-top {
    left: -8px;
  }

  .floating-note-bottom {
    right: -6px;
  }

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

  .trait-card {
    min-height: 270px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 4px;
    left: 4px;
    display: flex;
    visibility: hidden;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.96);
    box-shadow: 0 22px 54px rgba(28, 61, 118, 0.16);
    opacity: 0;
    transform: translateY(-9px);
    transition: opacity 200ms ease, transform 200ms var(--ease-out), visibility 200ms;
    pointer-events: none;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 11px;
  }

  .site-nav a:not(.nav-cta)::after {
    top: 13px;
    right: auto;
    bottom: auto;
    left: 4px;
    width: 3px;
    height: calc(100% - 26px);
    transform: scaleY(0);
  }

  .site-nav a:not(.nav-cta).is-active::after {
    transform: scaleY(1);
  }

  .site-nav .nav-cta {
    margin: 5px 0 0;
    text-align: center;
  }

  .hero {
    padding-top: 122px;
  }

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

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

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .visual-stage {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading-row .section-intro {
    margin: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-highlight {
    min-height: 330px;
  }

  .experience-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience-detail {
    padding-left: 15px;
  }

  .promises-panel {
    padding: 64px 44px 48px;
  }

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

  .promise-card {
    min-height: 265px;
  }

  .vote-card {
    padding: 54px 48px;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 30px;
  }

  .vote-mark {
    width: 210px;
    height: 210px;
  }

  .vote-mark > span {
    font-size: 62px;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 28px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .hero-points {
    gap: 13px 20px;
  }

  .visual-stage {
    width: min(100%, 440px);
    height: 475px;
  }

  .visual-stage::before {
    top: 73px;
    right: 50%;
    width: 345px;
    height: 345px;
    transform: translateX(50%);
  }

  .orbit-one {
    right: auto;
    left: 50%;
    width: 395px;
    height: 395px;
    margin-left: -197.5px;
  }

  .orbit-two {
    right: auto;
    left: 50%;
    width: 290px;
    height: 290px;
    margin-left: -145px;
  }

  .portrait-card {
    width: 300px;
    height: 370px;
  }

  .portrait-frame {
    width: 214px;
    height: 232px;
  }

  .floating-note-top {
    top: 81px;
  }

  .floating-note-bottom {
    right: -4px;
    bottom: 51px;
  }

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

  .stat-card {
    display: grid;
    align-items: center;
    padding: 15px 18px;
    grid-template-columns: 120px 1fr;
    text-align: left;
  }

  .stat-card:not(:last-child)::after {
    top: auto;
    right: 18px;
    bottom: 0;
    left: 18px;
    width: auto;
    height: 1px;
  }

  .stat-value {
    justify-content: flex-start;
  }

  .stat-value > span:first-child {
    font-size: 28px;
  }

  .stat-card p {
    margin: 0;
  }

  .content-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(32px, 8.5vw, 42px);
  }

  .section-intro {
    margin-top: 16px;
    font-size: 15px;
  }

  .about-story {
    padding: 40px 28px 38px 32px;
  }

  .quote-mark {
    top: 12px;
    left: 12px;
    font-size: 68px;
  }

  .about-highlight {
    min-height: auto;
    padding: 40px 30px;
  }

  .highlight-quote {
    font-size: 21px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .timeline-marker span {
    width: 13px;
    height: 13px;
    margin-top: 5px;
    margin-left: 8px;
    border-width: 3px;
  }

  .timeline-card {
    padding: 25px 22px 27px;
    border-radius: 23px;
  }

  .timeline-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .timeline-title-row h3 {
    font-size: 21px;
  }

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

  .trait-card {
    min-height: 245px;
  }

  .promises-section {
    padding-top: 58px;
  }

  .promises-panel {
    padding: 48px 23px 25px;
    border-radius: 31px;
  }

  .promise-card {
    min-height: 265px;
    padding: 28px 24px 26px;
  }

  .promise-number {
    margin-bottom: 30px;
  }

  .promise-footer {
    right: 24px;
    left: 24px;
  }

  .evidence-section {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .evidence-card,
  .evidence-card:nth-child(4n + 1),
  .evidence-card:nth-child(4n + 2),
  .evidence-card:nth-child(4n + 3),
  .evidence-card:nth-child(4n + 4) {
    grid-column: auto;
    height: 300px;
    border-radius: 23px;
  }

  .evidence-overlay {
    right: 19px;
    bottom: 18px;
    left: 19px;
  }

  .evidence-overlay strong {
    font-size: 19px;
  }

  .evidence-lightbox {
    padding: 74px 18px 34px;
  }

  .lightbox-figure > img {
    max-height: calc(100vh - 245px);
    border-radius: 16px;
  }

  .lightbox-close {
    top: 17px;
    right: 17px;
  }

  .lightbox-prev {
    left: 9px;
  }

  .lightbox-next {
    right: 9px;
  }

  .vote-section {
    padding-top: 52px;
    padding-bottom: 70px;
  }

  .vote-card {
    padding: 42px 28px 46px;
    border-radius: 31px;
    grid-template-columns: 1fr;
  }

  .vote-mark {
    width: 190px;
    height: 190px;
  }

  .vote-mark > span {
    font-size: 56px;
  }

  .site-footer {
    align-items: flex-start;
    padding-bottom: 32px;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .hero-title {
    font-size: 43px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    flex-basis: auto;
  }

  .visual-stage {
    height: 438px;
  }

  .visual-stage::before {
    top: 76px;
    width: 306px;
    height: 306px;
  }

  .orbit-one {
    top: 45px;
    width: 350px;
    height: 350px;
    margin-left: -175px;
  }

  .orbit-two {
    bottom: 36px;
    width: 246px;
    height: 246px;
    margin-left: -123px;
  }

  .portrait-card {
    top: 67px;
    width: 274px;
    height: 338px;
    padding: 20px;
    border-radius: 36px;
  }

  .portrait-frame {
    width: 190px;
    height: 208px;
    border-radius: 56px 56px 74px 74px;
  }

  .portrait-initials {
    font-size: 76px;
  }

  .portrait-caption {
    margin-top: 19px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .floating-note {
    padding: 10px 12px;
  }

  .floating-note-top {
    top: 78px;
    left: -5px;
  }

  .floating-note-bottom {
    right: -7px;
    bottom: 37px;
  }

  .floating-note small {
    display: none;
  }

  .stat-card {
    grid-template-columns: 100px 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  html[data-js="true"] .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   炫酷动效层 Motion pack
   --------------------------------------------------------------------------
   背景流光 / 首屏视频 / 逐字标题 / 无缝滚动带 / 卡片倾斜高光 / 按钮磁吸 / 光标柔光
   全部动效都尊重系统的「减少动态效果」设置。
   ========================================================================== */

/* --- 1. Aurora 流光背景 -------------------------------------------------- */

.aurora-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

html.aurora-active .ambient-orb {
  opacity: 0.5;
}

html.aurora-active .ambient-grid {
  opacity: 0.15;
}

html.aurora-css .aurora-canvas {
  background:
    radial-gradient(58% 52% at 16% 10%, rgba(35, 98, 223, 0.32), rgba(35, 98, 223, 0) 68%),
    radial-gradient(50% 46% at 86% 4%, rgba(91, 200, 232, 0.34), rgba(91, 200, 232, 0) 70%),
    radial-gradient(66% 58% at 58% 40%, rgba(103, 107, 236, 0.2), rgba(103, 107, 236, 0) 72%),
    linear-gradient(180deg, #eaf2ff 0%, #f7faff 58%, #f5f8ff 100%);
  background-size: 140% 140%;
  animation: auroraDrift 26s ease-in-out infinite alternate;
}

@keyframes auroraDrift {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: 100% 72%;
  }
}

/* --- 2. 光标柔光 --------------------------------------------------------- */

.cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 640px;
  height: 640px;
  margin: -320px 0 0 -320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 132, 255, 0.17), rgba(59, 132, 255, 0) 66%);
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
  will-change: transform;
}

/* --- 3. 首屏视频（可选，content.js 里配置 motion.heroVideo 后启用） -------- */

.hero-media {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  overflow: hidden;
  pointer-events: none;
}

.hero-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 34, 0.68) 0%,
    rgba(6, 15, 34, 0.35) 40%,
    rgba(6, 15, 34, 0.74) 100%
  );
  content: "";
}

html.has-hero-media .site-background {
  opacity: 0.45;
}

html.has-hero-media .hero-title {
  color: #ffffff;
  text-shadow: 0 20px 52px rgba(4, 12, 30, 0.42);
}

html.has-hero-media .hero-name {
  color: #b6d4ff;
}

html.has-hero-media .hero-lead {
  color: rgba(231, 239, 255, 0.9);
}

html.has-hero-media .hero-points,
html.has-hero-media .hero-points li {
  color: rgba(220, 232, 255, 0.86);
}

html.has-hero-media .hero-points span {
  color: rgba(178, 203, 246, 0.72);
}

html.has-hero-media .hero-eyebrow {
  color: #cfe1ff;
}

html.has-hero-media .hero-eyebrow .eyebrow-dot {
  background: #8fc2ff;
  box-shadow: 0 0 0 6px rgba(143, 194, 255, 0.18);
}

html.has-hero-media .hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

html.has-hero-media .hero .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

html.has-hero-media .site-header:not(.is-scrolled) .brand-copy strong {
  color: #ffffff;
}

html.has-hero-media .site-header:not(.is-scrolled) .brand-copy small,
html.has-hero-media .site-header:not(.is-scrolled) .site-nav a {
  color: rgba(219, 231, 255, 0.76);
}

html.has-hero-media .site-header:not(.is-scrolled) .brand-mark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* --- 4. 首屏标题逐字浮现 ------------------------------------------------- */

.kinetic-char {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 0.4em, 0) rotate(4deg);
  animation: charRise 780ms var(--ease-out) forwards;
  animation-delay: calc(var(--char-index, 0) * 42ms + 150ms);
  will-change: transform, opacity, filter;
}

.hero-name .kinetic-char {
  animation-delay: calc(var(--char-index, 0) * 52ms + 60ms);
}

@keyframes charRise {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

/* --- 5. 无缝滚动关键词带 ------------------------------------------------ */

.marquee-band {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 14px 0 0;
  padding: 21px 0;
  overflow: hidden;
  border-top: 1px solid rgba(35, 68, 126, 0.09);
  border-bottom: 1px solid rgba(35, 68, 126, 0.09);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.66) 16%,
    rgba(255, 255, 255, 0.66) 84%,
    rgba(255, 255, 255, 0) 100%
  );
  mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
}

.marquee-viewport {
  display: flex;
  width: 100%;
  transform: skewX(var(--marquee-skew, 0deg));
  will-change: transform;
}

.marquee-track {
  display: flex;
  flex: none;
  align-items: center;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-around;
  min-width: 50vw;
  padding-right: 40px;
  gap: 30px;
}

.marquee-item {
  color: rgba(24, 40, 74, 0.72);
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.marquee-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(35, 98, 223, 0.4);
  animation: marqueePulse 4.5s ease-in-out infinite;
}

@keyframes marqueeScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* --- 6. 卡片倾斜与光标高光 --------------------------------------------- */

html[data-js="true"] .motion-card {
  position: relative;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg))
    translate3d(0, var(--lift, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 460ms var(--ease-out), box-shadow 380ms ease, border-color 320ms ease,
    background-color 320ms ease;
  will-change: transform;
}

html[data-js="true"] .motion-card.is-tilting {
  --lift: -5px;
  transition: transform 130ms linear, box-shadow 380ms ease, border-color 320ms ease,
    background-color 320ms ease;
}

html[data-js="true"] .motion-card:hover {
  --lift: -5px;
}

html[data-js="true"] .motion-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgba(35, 98, 223, 0.17),
    rgba(35, 98, 223, 0) 68%
  );
  opacity: 0;
  content: "";
  transition: opacity 340ms ease;
  pointer-events: none;
}

html[data-js="true"] .motion-card:hover::before {
  opacity: 1;
}

html[data-js="true"] .promise-card::before {
  background: radial-gradient(
    320px circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgba(150, 196, 255, 0.2),
    rgba(150, 196, 255, 0) 70%
  );
}

html[data-js="true"] .evidence-card::before {
  z-index: 1;
  background: radial-gradient(
    340px circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgba(180, 214, 255, 0.24),
    rgba(180, 214, 255, 0) 70%
  );
}

/* --- 7. 按钮磁吸与光泽扫过 --------------------------------------------- */

html[data-js="true"] .motion-magnet {
  transform: translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0);
  transition: transform 190ms var(--ease-out), box-shadow 220ms ease, background-color 220ms ease,
    border-color 220ms ease, color 220ms ease;
}

html[data-js="true"] .motion-magnet:hover {
  transform: translate3d(var(--magnet-x, 0px), calc(var(--magnet-y, 0px) - 2px), 0);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  position: absolute;
  top: -70%;
  left: 0;
  width: 30%;
  height: 240%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  transform: translate3d(-180%, 0, 0) rotate(10deg);
  transition: transform 760ms var(--ease-out);
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translate3d(430%, 0, 0) rotate(10deg);
}

.button-secondary::after {
  background: linear-gradient(
    100deg,
    rgba(35, 98, 223, 0) 0%,
    rgba(35, 98, 223, 0.16) 50%,
    rgba(35, 98, 223, 0) 100%
  );
}

/* --- 8. 首屏滚动位移 ---------------------------------------------------- */

.hero-copy {
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  opacity: var(--hero-fade, 1);
  will-change: transform, opacity;
}

.visual-stage {
  transform: translate3d(0, var(--stage-shift, 0px), 0);
}

/* --- 9. 减少动态效果 ---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html.aurora-css .aurora-canvas,
  .marquee-track,
  .marquee-dot,
  .kinetic-char {
    animation: none !important;
  }

  .kinetic-char {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  html[data-js="true"] .motion-card,
  html[data-js="true"] .motion-magnet,
  .hero-copy,
  .visual-stage {
    transform: none !important;
  }

  .cursor-glow {
    display: none;
  }
}
