:root {
  --home-blue: #1466df;
  --home-blue-light: #78acff;
  --home-orange: #f18b18;
  --home-ink: #08172a;
}

.home-page { color: var(--home-ink); background: #fff; overflow-x: hidden; }
.home-page button, .home-page a { -webkit-tap-highlight-color: transparent; }
.home-page :focus-visible { outline: 3px solid #ffb04a; outline-offset: 4px; }

.home-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.2vw, 38px);
  padding: 0 clamp(22px, 4vw, 70px);
  color: var(--home-ink);
  border-bottom: 1px solid rgba(8, 23, 42, .06);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 36px rgba(7, 24, 48, .04);
  backdrop-filter: blur(18px);
}

.home-brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.home-brand img { width: 150px; height: 58px; display: block; object-fit: contain; object-position: left center; }

.home-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 1.8vw, 34px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.home-nav a { position: relative; white-space: nowrap; }
.home-nav a:not(.home-nav__cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--home-blue), var(--home-orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.home-nav a:not(.home-nav__cta):hover::after,
.home-nav a:not(.home-nav__cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }

.home-nav__cta,
.home-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(112deg, var(--home-blue), #347cf0 58%, var(--home-orange));
  box-shadow: 0 16px 38px rgba(26, 102, 220, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.home-nav__cta:hover, .home-button:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(26, 102, 220, .36); }

.home-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex: 0 0 auto;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(8, 23, 42, .16);
  border-radius: 50%;
  background: #fff;
}
.home-menu-toggle span { width: 18px; height: 2px; display: block; border-radius: 99px; background: var(--home-ink); transition: transform .25s ease, opacity .2s ease; }
.home-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.home-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.home-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.home-main { min-height: calc(100svh - 88px); background: #fff; }
.home-hero-wrap { padding: 18px clamp(18px, 3.5vw, 56px) 20px; }
.home-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 126px));
  overflow: hidden;
  color: #fff;
  border-radius: 26px;
  background: #0a2341;
  box-shadow: 0 30px 80px rgba(8, 32, 67, .2);
  isolation: isolate;
}

.home-hero__image, .home-hero__shade, .home-hero__visuals, .home-hero__visual { position: absolute; inset: 0; }
.home-hero__image {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  transition: transform 7s cubic-bezier(.2, .7, .2, 1), object-position 1s ease, filter .8s ease;
}
.home-hero.is-playing .home-hero__image { transform: scale(1.085); }
.home-hero[data-active-slide="1"] .home-hero__image { object-position: 58% center; filter: saturate(.9) contrast(1.05); }
.home-hero[data-active-slide="2"] .home-hero__image { object-position: 45% center; filter: saturate(.72) contrast(1.08); }

.home-hero__shade {
  z-index: -3;
  background: linear-gradient(90deg, rgba(3, 17, 40, .94) 0%, rgba(4, 23, 50, .76) 42%, rgba(3, 15, 34, .16) 76%), linear-gradient(0deg, rgba(4, 15, 34, .5), transparent 48%);
  transition: background .8s ease;
}
.home-hero[data-active-slide="1"] .home-hero__shade { background: linear-gradient(90deg, rgba(4, 20, 45, .94) 0%, rgba(5, 30, 61, .7) 45%, rgba(6, 21, 42, .32) 100%), radial-gradient(circle at 82% 36%, rgba(21, 111, 224, .3), transparent 30%); }
.home-hero[data-active-slide="2"] .home-hero__shade { background: linear-gradient(90deg, rgba(2, 16, 38, .96) 0%, rgba(4, 28, 59, .78) 48%, rgba(4, 20, 43, .34) 100%), radial-gradient(circle at 80% 28%, rgba(43, 126, 239, .32), transparent 32%); }

.home-hero__visuals { z-index: -1; pointer-events: none; }
.home-hero__visual { opacity: 0; transform: translateX(28px); transition: opacity .8s ease, transform .8s ease; }
.home-hero__visual.is-active { opacity: 1; transform: translateX(0); }
.home-hero__scene-index { position: absolute; top: 42px; right: 46px; display: grid; justify-items: end; color: rgba(255, 255, 255, .74); letter-spacing: .18em; }
.home-hero__scene-index span { font-size: 56px; font-weight: 300; line-height: 1; }
.home-hero__scene-index b { margin-top: 10px; font-size: 10px; }

.home-hero__mascot-card {
  position: absolute;
  top: clamp(38px, 7vh, 78px);
  right: clamp(30px, 6vw, 90px);
  width: min(31vw, 390px);
  height: min(54vh, 500px);
  min-height: 350px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--home-ink);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 30px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 28px 70px rgba(0, 20, 53, .28);
  backdrop-filter: blur(18px);
}
.home-hero__mascot-card > div { padding: 24px 26px 18px; }
.home-hero__mascot-card span { display: block; color: var(--home-blue); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.home-hero__mascot-card strong { display: block; margin-top: 8px; font-size: 28px; }
.home-hero__mascot-card small { display: block; margin-top: 8px; color: #64748a; }
.home-hero__mascot-card img { width: 100%; height: 100%; min-height: 0; display: block; object-fit: cover; object-position: center 18%; }

.home-hero__route-card {
  position: absolute;
  top: clamp(70px, 12vh, 132px);
  right: clamp(34px, 7vw, 110px);
  width: min(34vw, 480px);
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 26px;
  background: rgba(5, 25, 54, .44);
  box-shadow: 0 26px 70px rgba(0, 16, 44, .32);
  backdrop-filter: blur(16px);
}
.home-hero__route-card span, .home-hero__route-card b { display: block; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.home-hero__route-card span { color: #bcd6ff; }
.home-hero__route-card b { color: #fff; text-align: right; }
.home-hero__route-card svg { width: 100%; height: auto; display: block; overflow: visible; }
.home-hero__route-card path { fill: none; stroke: var(--home-blue-light); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 8 9; animation: home-route 14s linear infinite; }
.home-hero__route-card circle { fill: var(--home-orange); filter: drop-shadow(0 0 9px rgba(241, 139, 24, .8)); }

.home-hero__slides { position: relative; z-index: 2; min-height: inherit; }
.home-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(46px, 7vw, 108px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity .68s ease, transform .68s ease, visibility .68s step-end;
}
.home-hero__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition: opacity .68s ease, transform .68s ease, visibility 0s; }
.home-hero__copy { width: min(680px, 60%); }
.home-hero__eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; color: #c2d9ff; font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.home-hero__eyebrow::before { content: ""; width: 36px; height: 2px; background: linear-gradient(90deg, var(--home-blue-light), var(--home-orange)); }
.home-hero h1, .home-hero h2 { max-width: 850px; margin: 0; color: #fff; font-size: clamp(52px, 6.15vw, 96px); font-weight: 800; line-height: .98; letter-spacing: -.065em; text-wrap: balance; }
.home-hero__lead { max-width: 610px; margin: 30px 0 0; color: rgba(255, 255, 255, .84); font-size: clamp(16px, 1.45vw, 21px); line-height: 1.85; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.home-button--ghost { color: #fff; border: 1px solid rgba(255, 255, 255, .72); background: rgba(3, 18, 40, .14); box-shadow: none; backdrop-filter: blur(8px); }
.home-button--ghost:hover { box-shadow: 0 16px 40px rgba(0, 10, 28, .25); }

.home-hero__controls { position: absolute; right: clamp(28px, 5vw, 80px); bottom: 34px; z-index: 5; display: none; align-items: center; gap: 11px; }
.has-home-js .home-hero__controls { display: flex; }
.home-hero__control, .home-hero__dot, .home-hero__pause { display: inline-flex; align-items: center; justify-content: center; color: #fff; border: 1px solid rgba(255, 255, 255, .3); background: rgba(2, 13, 31, .3); backdrop-filter: blur(10px); cursor: pointer; }
.home-hero__control { width: 44px; height: 44px; padding: 0; border-radius: 50%; font-size: 17px; }
.home-hero__dots { display: flex; align-items: center; gap: 7px; }
.home-hero__dot { width: 34px; height: 7px; padding: 0; border-radius: 99px; transition: width .3s ease, background .3s ease; }
.home-hero__dot.is-active { width: 64px; border-color: transparent; background: linear-gradient(90deg, var(--home-blue-light), var(--home-orange)); }
.home-hero__pause { min-width: 48px; height: 44px; padding: 0 12px; border-radius: 22px; font-size: 12px; }
.home-hero__progress { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.home-services {
  padding: clamp(104px, 11vw, 164px) clamp(22px, 5.4vw, 86px);
  color: var(--home-ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(53, 123, 236, .08), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f8fafe 100%);
}

.home-services__inner { width: min(100%, 1380px); margin: 0 auto; }
.home-section-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .62fr); gap: clamp(36px, 6vw, 92px); align-items: end; margin-bottom: clamp(52px, 6.5vw, 90px); }
.home-section-kicker { margin: 0 0 18px; color: var(--home-blue); font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.home-section-title { max-width: 900px; margin: 0; font-size: clamp(44px, 5.2vw, 78px); line-height: 1.06; letter-spacing: -.055em; text-wrap: balance; }
.home-section-intro { margin: 0; color: #607188; font-size: 17px; line-height: 1.9; }

.home-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.home-service-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: auto minmax(116px, 1fr) auto;
  padding: 30px;
  overflow: hidden;
  color: var(--home-ink);
  border: 1px solid rgba(27, 91, 187, .12);
  border-radius: 26px;
  background: linear-gradient(155deg, #fff 0%, #edf4ff 100%);
  box-shadow: 0 16px 50px rgba(27, 72, 139, .06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.home-service-card:nth-child(2) { background: linear-gradient(155deg, #fff 0%, #fff5e6 100%); }
.home-service-card:nth-child(3) { background: linear-gradient(155deg, #fff 0%, #eaf8fa 100%); }
.home-service-card:nth-child(4) { background: linear-gradient(155deg, #fff 0%, #f1eeff 100%); }
.home-service-card:hover { transform: translateY(-10px); border-color: rgba(27, 91, 187, .22); box-shadow: 0 28px 70px rgba(27, 72, 139, .15); }
.home-service-card__number { position: relative; z-index: 2; color: var(--home-blue); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.home-service-card__visual { position: relative; min-height: 116px; display: grid; place-items: center; }
.home-service-card__visual i {
  width: 150px;
  height: 150px;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .98), rgba(65, 132, 235, .3) 38%, rgba(255, 142, 22, .06) 70%);
  box-shadow: 0 22px 45px rgba(45, 112, 220, .12);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.home-service-card:nth-child(2) .home-service-card__visual i { background: radial-gradient(circle at 35% 30%, #fff, rgba(244, 159, 65, .27) 40%, rgba(255, 203, 126, .08) 72%); }
.home-service-card:nth-child(3) .home-service-card__visual i { background: radial-gradient(circle at 35% 30%, #fff, rgba(40, 166, 185, .25) 40%, rgba(62, 195, 207, .08) 72%); }
.home-service-card:nth-child(4) .home-service-card__visual i { background: radial-gradient(circle at 35% 30%, #fff, rgba(124, 96, 226, .24) 40%, rgba(148, 123, 236, .08) 72%); }
.home-service-card:hover .home-service-card__visual i { transform: scale(1.08) translateY(-5px); }
.home-service-card__visual b { position: absolute; color: rgba(8, 32, 70, .42); font-size: 11px; letter-spacing: .22em; }
.home-service-card__copy { position: relative; z-index: 2; display: grid; grid-template-rows: auto minmax(calc(1.78em * 5), auto); align-content: end; }
.home-service-card__copy strong { display: block; margin: 0 0 16px; font-size: 29px; line-height: 1.3; }
.home-service-card__copy > span { display: block; color: #62748a; font-size: 15px; line-height: 1.78; }
.home-service-card__arrow { position: absolute; top: 26px; right: 26px; width: 34px; height: 34px; display: grid; place-items: center; color: rgba(19, 82, 178, .72); border: 1px solid rgba(19, 82, 178, .14); border-radius: 50%; transition: color .3s ease, background .3s ease, transform .3s ease; }
.home-service-card:hover .home-service-card__arrow { color: #fff; background: var(--home-blue); transform: rotate(45deg); }

.home-statement {
  position: relative;
  min-height: min(820px, 76svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(110px, 12vw, 180px) clamp(24px, 7vw, 108px);
  color: #f7faff;
  background: #06101f;
  isolation: isolate;
}
.home-statement::before,
.home-statement::after {
  content: "";
  position: absolute;
  z-index: -3;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(65px);
  opacity: .3;
  animation: home-statement-glow 12s ease-in-out infinite alternate;
}
.home-statement::before { top: -42%; left: -18%; background: #1a67ec; }
.home-statement::after { right: -20%; bottom: -52%; background: #e97913; animation-delay: -5s; }
.home-statement__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .24;
  background-image: linear-gradient(rgba(127, 165, 224, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(127, 165, 224, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}
.home-statement__orbit {
  position: absolute;
  z-index: -1;
  width: min(72vw, 1040px);
  aspect-ratio: 1;
  border: 1px solid rgba(136, 179, 246, .14);
  border-radius: 50%;
  animation: home-statement-orbit 34s linear infinite;
}
.home-statement__orbit::before,
.home-statement__orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(136, 179, 246, .1);
  border-radius: 50%;
}
.home-statement__orbit::after { inset: 28%; border-style: dashed; }
.home-statement__orbit i {
  position: absolute;
  top: 9%;
  left: 18%;
  width: 15px;
  height: 15px;
  border: 3px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 28px rgba(241, 139, 24, .9);
}
.home-statement__orbit span { position: absolute; right: 12%; bottom: 21%; color: rgba(193, 215, 250, .42); font-size: 10px; font-weight: 800; letter-spacing: .24em; }
.home-statement__content { position: relative; z-index: 2; width: min(1180px, 100%); text-align: center; }
.home-statement__kicker { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 26px; color: #98bcf5; font-size: 11px; font-weight: 900; letter-spacing: .26em; text-transform: uppercase; }
.home-statement__kicker::before,
.home-statement__kicker::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--home-blue-light)); }
.home-statement__kicker::after { background: linear-gradient(90deg, var(--home-orange), transparent); }
.home-statement h2 { margin: 0; font-size: clamp(52px, 6.3vw, 94px); line-height: 1.08; letter-spacing: -.06em; text-wrap: balance; }
.home-statement h2 span { display: block; }
.home-statement h2 span:first-child { color: rgba(235, 243, 255, .58); font-weight: 540; }
.home-statement h2 span:last-child { margin-top: 12px; color: #fff; font-weight: 820; text-shadow: 0 18px 50px rgba(22, 96, 218, .22); }
.home-statement__meta { margin: 30px 0 0; color: rgba(220, 233, 253, .55); font-size: 13px; letter-spacing: .18em; }
.home-statement__link { min-height: 50px; display: inline-flex; align-items: center; gap: 12px; margin-top: 34px; padding: 0 22px; color: #fff; font-weight: 800; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; background: rgba(10, 35, 72, .34); backdrop-filter: blur(12px); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.home-statement__link:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .55); background: linear-gradient(110deg, rgba(20, 102, 223, .78), rgba(241, 139, 24, .7)); }

.has-home-js .home-reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease, border-color .35s ease; }
.has-home-js .home-reveal.is-visible { opacity: 1; transform: translateY(0); }
.has-home-js .home-service-card:nth-child(2) { transition-delay: .06s; }
.has-home-js .home-service-card:nth-child(3) { transition-delay: .12s; }
.has-home-js .home-service-card:nth-child(4) { transition-delay: .18s; }

@keyframes home-route { to { stroke-dashoffset: -170; } }
@keyframes home-statement-glow { to { transform: translate3d(7%, 5%, 0) scale(1.08); opacity: .42; } }
@keyframes home-statement-orbit { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  .home-header { padding-inline: 26px; }
  .home-nav { gap: 17px; font-size: 13px; }
  .home-nav__cta { min-height: 44px; padding-inline: 18px; }
  .home-hero__copy { width: min(650px, 66%); }
  .home-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-service-card__copy { grid-template-rows: auto minmax(calc(1.78em * 4), auto); }
}

@media (max-width: 980px) {
  .home-header { min-height: 74px; padding: 0 20px; }
  .home-brand img { width: 126px; height: 48px; }
  .has-home-js .home-menu-toggle { display: grid; }
  .home-nav { position: absolute; top: 74px; right: 14px; left: 14px; display: grid; align-items: stretch; justify-content: stretch; gap: 0; padding: 14px; border: 1px solid rgba(8, 23, 42, .1); border-radius: 20px; background: rgba(255, 255, 255, .98); box-shadow: 0 26px 70px rgba(7, 30, 64, .2); }
  .has-home-js .home-nav { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease, visibility .25s step-end; }
  .has-home-js .home-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition: opacity .25s ease, transform .25s ease, visibility 0s; }
  .home-nav a { min-height: 46px; display: flex; align-items: center; padding: 0 12px; border-radius: 12px; }
  .home-nav a:hover { background: #f1f6fd; }
  .home-nav a:not(.home-nav__cta)::after { display: none; }
  .home-nav__cta { margin-top: 8px; justify-content: center; }
  .home-main { min-height: calc(100svh - 74px); }
  .home-hero { min-height: min(760px, calc(100svh - 110px)); }
  .home-hero__copy { width: min(620px, 70%); }
  .home-hero__mascot-card, .home-hero__route-card { right: 34px; }
  .home-section-head { grid-template-columns: 1fr; align-items: start; }
  .home-section-intro { max-width: 680px; }
  .home-statement { min-height: 720px; }
  .home-statement__orbit { width: 100vw; }
}

@media (max-width: 720px) {
  .home-hero-wrap { padding: 10px 12px 14px; }
  .home-hero { min-height: calc(100svh - 98px); border-radius: 20px; }
  .home-hero__image, .home-hero[data-active-slide="1"] .home-hero__image, .home-hero[data-active-slide="2"] .home-hero__image { object-position: 68% center; }
  .home-hero__shade, .home-hero[data-active-slide="1"] .home-hero__shade, .home-hero[data-active-slide="2"] .home-hero__shade { background: linear-gradient(0deg, rgba(2, 13, 31, .98) 0%, rgba(3, 18, 40, .88) 52%, rgba(3, 18, 40, .2) 100%); }
  .home-hero__scene-index { top: 24px; right: 24px; }
  .home-hero__scene-index span { font-size: 38px; }
  .home-hero__mascot-card { top: 22px; right: 22px; width: 166px; height: 220px; min-height: 0; grid-template-rows: auto 1fr; border-radius: 22px; }
  .home-hero__mascot-card > div { padding: 14px 15px 10px; }
  .home-hero__mascot-card strong { margin-top: 3px; font-size: 19px; }
  .home-hero__mascot-card small { display: none; }
  .home-hero__route-card { top: 35px; right: 20px; width: 210px; padding: 18px; border-radius: 20px; opacity: .9; }
  .home-hero__slide { align-items: flex-end; padding: 72px 24px 112px; }
  .home-hero__copy { width: 100%; }
  .home-hero__eyebrow { margin-bottom: 18px; font-size: 10px; }
  .home-hero h1, .home-hero h2 { font-size: clamp(42px, 12vw, 52px); line-height: 1.02; letter-spacing: -.055em; }
  .home-hero__lead { margin-top: 22px; font-size: 15px; line-height: 1.7; }
  .home-hero__actions { margin-top: 24px; }
  .home-button { min-height: 43px; padding: 0 16px; font-size: 13px; }
  .home-hero__controls { right: 22px; bottom: 28px; }
  .home-hero__control, .home-hero__pause { display: none; }
  .home-hero__dot { width: 28px; }
  .home-hero__dot.is-active { width: 52px; }
  .home-services { padding: 88px 20px 96px; }
  .home-section-head { gap: 24px; margin-bottom: 42px; }
  .home-section-title { font-size: 43px; }
  .home-section-intro { font-size: 15px; line-height: 1.8; }
  .home-service-grid { grid-template-columns: 1fr; gap: 14px; }
  .home-service-card { min-height: 330px; grid-template-rows: auto 92px auto; padding: 26px; }
  .home-service-card__visual { min-height: 92px; }
  .home-service-card__visual i { width: 120px; height: 120px; }
  .home-service-card__copy { grid-template-rows: auto auto; }
  .home-service-card__copy strong { font-size: 27px; }
  .home-service-card__copy > span { font-size: 15px; }
  .home-statement { min-height: 650px; padding: 100px 22px; }
  .home-statement__orbit { width: 150vw; }
  .home-statement h2 { font-size: clamp(42px, 11.5vw, 52px); line-height: 1.12; letter-spacing: -.055em; }
  .home-statement h2 span:last-child { margin-top: 18px; }
  .home-statement__meta { max-width: 270px; margin-inline: auto; line-height: 1.8; }
}

@media (max-width: 390px) {
  .home-hero__slide { padding-inline: 20px; }
  .home-hero h1, .home-hero h2 { font-size: 39px; }
  .home-button { padding-inline: 14px; }
  .home-section-title { font-size: 39px; }
  .home-statement h2 { font-size: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *, .home-page *::before, .home-page *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .home-hero__image { transform: none !important; }
}

/* 首页后半部分：案例、一卡通、历程、洞察与咨询 */
.home-cases,
.home-history,
.home-insights { padding: clamp(88px, 10vw, 150px) max(24px, 6vw); }
.home-cases { color: #f3f7ff; background: #071529; }
.home-cases__inner,
.home-insights__inner { max-width: 1440px; margin: 0 auto; }
.home-cases .home-section-title { max-width: 720px; color: #fff; }
.home-cases .home-section-intro { color: #91a6c2; }
.home-cases__empty { position: relative; min-height: 420px; padding: clamp(34px, 6vw, 84px); border: 1px solid rgba(118,157,213,.24); border-radius: 34px; background: radial-gradient(circle at 80% 20%,rgba(27,112,235,.3),transparent 30%),linear-gradient(135deg,#0b2141,#071529); overflow: hidden; }
.home-cases__empty::after { content: "00"; position: absolute; right: 5%; bottom: -12%; color: rgba(255,255,255,.035); font-size: clamp(180px,28vw,440px); font-weight: 900; line-height: 1; }
.home-cases__empty span { color: #73a8f7; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.home-cases__empty h3 { position: relative; z-index: 1; max-width: 760px; margin: 90px 0 18px; font-size: clamp(34px,5vw,70px); line-height: 1.05; letter-spacing: -.05em; }
.home-cases__empty p { position: relative; z-index: 1; max-width: 690px; color: #9fb1c9; font-size: 17px; line-height: 1.8; }
.home-cases__empty a { position: relative; z-index: 1; display: inline-block; margin-top: 28px; color: #fff; font-weight: 800; }
.home-cases__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.home-case-card { min-height: 560px; border: 1px solid rgba(120,156,204,.22); border-radius: 28px; background: #0b1d35; overflow: hidden; transition: transform .3s ease,border-color .3s ease; }
.home-case-card:hover { transform: translateY(-8px); border-color: rgba(100,155,238,.65); }
.home-case-card > img,.home-case-card__placeholder { display: block; width: 100%; height: 280px; object-fit: cover; }
.home-case-card__placeholder { padding: 34px; color: rgba(255,255,255,.12); background: linear-gradient(135deg,#12345f,#0a1b32); font-size: 120px; font-weight: 900; }
.home-case-card__content { display: flex; flex-direction: column; min-height: 280px; padding: 28px; }
.home-case-card__content small { color: #6ea7ff; letter-spacing: .12em; }
.home-case-card__content strong { margin: 16px 0; color: #fff; font-size: 26px; line-height: 1.25; }
.home-case-card__content span { color: #9eb0c8; line-height: 1.75; }
.home-case-card__content b { margin-top: auto; padding-top: 26px; color: #fff; }

.home-onecard { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(42px,8vw,120px); align-items: center; padding: clamp(88px,11vw,170px) max(24px,8vw); color: #07182c; background: #eef5ff; }
.home-onecard__visual { position: relative; min-height: 600px; border-radius: 40px; background: radial-gradient(circle at 25% 25%,#fff 0 10%,transparent 32%),linear-gradient(145deg,#0d69dc,#1f7aed 50%,#f3921b); overflow: hidden; box-shadow: 0 35px 100px rgba(23,93,185,.22); }
.home-onecard__visual img { position: absolute; right: 8%; bottom: 7%; width: min(70%,420px); aspect-ratio: 1; border: 12px solid rgba(255,255,255,.35); border-radius: 42% 58% 55% 45%; object-fit: cover; transform: rotate(-7deg); box-shadow: 0 28px 70px rgba(4,35,78,.3); }
.home-onecard__visual span { position: absolute; top: 7%; left: 7%; color: rgba(255,255,255,.92); font-size: clamp(46px,7vw,110px); font-weight: 900; letter-spacing: -.08em; writing-mode: vertical-rl; }
.home-onecard__content h2 { margin: 16px 0 28px; font-size: clamp(46px,6.4vw,94px); line-height: 1.02; letter-spacing: -.07em; }
.home-onecard__content > p { color: #64778e; font-size: 18px; line-height: 1.9; }
.home-onecard__features { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 38px; }
.home-onecard__features span { padding: 10px 15px; border: 1px solid #cedced; border-radius: 999px; color: #155cb7; background: #fff; font-size: 14px; font-weight: 700; }

.home-history { color: #102037; background: #fff; }
.home-history > .home-section-head,.home-history__line { max-width: 1440px; margin-right: auto; margin-left: auto; }
.home-history__line { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; margin-top: 70px; }
.home-history__line::before { content: ""; position: absolute; top: 10px; right: 0; left: 0; height: 1px; background: #ced9e7; }
.home-history__item { position: relative; padding: 42px clamp(14px,2.5vw,38px) 0 0; }
.home-history__item::before { content: ""; position: absolute; top: 3px; left: 0; width: 15px; height: 15px; border: 4px solid #fff; border-radius: 50%; background: #1768df; box-shadow: 0 0 0 1px #1768df; }
.home-history__item > span { color: #1466df; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.home-history__item h3 { margin: 17px 0; font-size: 24px; line-height: 1.35; }
.home-history__item p { margin: 0; color: #667990; line-height: 1.8; }

.home-insights { color: #eaf2ff; background: linear-gradient(145deg,#092651,#071529 62%); }
.home-insights .home-section-title { color: #fff; }
.home-insights__all { align-self: flex-end; padding-bottom: 12px; color: #bdd3f2; font-weight: 800; }
.home-insights__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.home-insight-card { display: flex; flex-direction: column; min-height: 420px; padding: 32px; border: 1px solid rgba(126,162,211,.25); border-radius: 28px; background: rgba(255,255,255,.035); transition: .3s ease; }
.home-insight-card:hover { background: rgba(255,255,255,.08); transform: translateY(-6px); }
.home-insight-card > span { color: #78a9ee; font-size: 12px; letter-spacing: .1em; }
.home-insight-card h3 { margin: 56px 0 20px; font-size: 28px; line-height: 1.4; }
.home-insight-card p { margin: 0; color: #9fb2cc; line-height: 1.8; }
.home-insight-card b { margin-top: auto; padding-top: 24px; color: #fff; }

.home-contact { position: relative; min-height: 720px; display: grid; place-items: center; padding: 110px max(24px,8vw); color: #fff; text-align: center; background: #061326; overflow: hidden; }
.home-contact__glow { position: absolute; width: min(70vw,900px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(31,117,237,.42),rgba(235,141,21,.12) 36%,transparent 68%); animation: home-contact-pulse 7s ease-in-out infinite; }
.home-contact__content { position: relative; z-index: 1; max-width: 1060px; }
.home-contact__content > p { color: #74a8f3; font-size: 12px; letter-spacing: .25em; }
.home-contact__content h2 { margin: 26px 0; font-size: clamp(48px,7.5vw,110px); line-height: .98; letter-spacing: -.07em; }
.home-contact__content > span { display: block; max-width: 760px; margin: 0 auto; color: #aebed2; font-size: 18px; line-height: 1.85; }
.home-contact__content > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
@keyframes home-contact-pulse { 50% { transform: scale(1.12); opacity: .76; } }

@media (max-width: 980px) {
  .home-cases__grid,.home-insights__grid { grid-template-columns: 1fr; }
  .home-case-card { min-height: 0; }
  .home-onecard { grid-template-columns: 1fr; }
  .home-onecard__visual { min-height: 480px; }
  .home-history__line { grid-template-columns: 1fr; gap: 36px; }
  .home-history__line::before { top: 0; right: auto; bottom: 0; left: 7px; width: 1px; height: auto; }
  .home-history__item { padding: 0 0 0 42px; }
  .home-history__item::before { top: 5px; }
}

@media (max-width: 640px) {
  .home-cases,.home-history,.home-insights { padding-right: 20px; padding-left: 20px; }
  .home-cases__empty { min-height: 390px; padding: 28px; }
  .home-cases__empty h3 { margin-top: 68px; }
  .home-onecard { padding-right: 20px; padding-left: 20px; }
  .home-onecard__visual { min-height: 390px; border-radius: 28px; }
  .home-onecard__visual img { width: 72%; border-width: 7px; }
  .home-onecard__content h2 { font-size: 47px; }
  .home-insight-card { min-height: 360px; padding: 26px; }
  .home-contact { min-height: 620px; padding-right: 20px; padding-left: 20px; }
}
