.home-page {
  --home-header-height: 58px;
  --home-scroll-offset: var(--home-header-height);
  background:
    linear-gradient(180deg, #f5fbff 0%, #ffffff 42%, #f4fbff 100%);
}

.home-page .site-header {
  box-shadow: 0 8px 24px rgba(38, 96, 157, 0.06);
}

.home-page .round-action {
  text-decoration: none;
}

.home-hero,
.home-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

.section-index {
  position: absolute;
  left: max(16px, calc((100vw - var(--container)) / 2 - 84px));
  top: 18px;
  color: rgba(47, 128, 237, 0.12);
  font-size: 30px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
}

.home-hero {
  display: flex;
  align-items: center;
  isolation: isolate;
  min-height: 100dvh;
  padding: clamp(44px, 7vh, 78px) 0 clamp(88px, 11vh, 124px);
  background: #f5fbff;
}

@supports not (height: 100dvh) {
  .home-hero {
    min-height: 100vh;
  }
}

.home-hero::before {
  display: none;
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 78px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  content: "";
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: absolute;
  top: clamp(76px, 13vh, 118px);
  right: max(28px, calc((100vw - var(--container)) / 2 - 124px));
  z-index: 2;
  width: min(327px, calc(100vw - 48px));
  margin: 0;
}

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

.hero-copy h1 {
  max-width: 520px;
  margin: 0 0 12px;
  color: #172033;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 800;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 22px rgba(255, 255, 255, 0.74);
}

.hero-copy h1 span {
  display: block;
  color: var(--primary);
  font-size: 52px;
}

.hero-copy p {
  margin: 0 0 24px;
  color: #56677f;
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.78);
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-points div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-width: 0;
}

.hero-points img {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(1996%) hue-rotate(198deg) brightness(96%) contrast(94%);
}

.hero-points strong {
  color: #1a3558;
  font-size: 16px;
  line-height: 1.2;
}

.hero-points span {
  color: #596d86;
  font-size: 13px;
  line-height: 1.4;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.18);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.hero-scroll-cue:hover {
  border-color: rgba(47, 128, 237, 0.38);
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 18px 38px rgba(47, 128, 237, 0.24);
}

.hero-scroll-cue span {
  position: relative;
  display: block;
  width: 18px;
  height: 24px;
  margin-top: -2px;
  transform: translateY(-4px);
  animation: hero-scroll-cue 1.7s ease-in-out infinite;
}

.hero-scroll-cue span::before,
.hero-scroll-cue span::after {
  position: absolute;
  left: 2px;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.hero-scroll-cue span::before {
  top: 0;
}

.hero-scroll-cue span::after {
  top: 10px;
  opacity: 0.42;
  content: "";
}

@keyframes hero-scroll-cue {
  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue span {
    animation: none;
  }
}

.deep-section {
  scroll-margin-top: calc(var(--home-scroll-offset) + 12px);
}

.home-section {
  padding: 34px 0 28px;
  border-top: 1px solid rgba(224, 237, 250, 0.72);
  background: rgba(255, 255, 255, 0.62);
}

.home-section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(244, 250, 255, 0.8), rgba(255, 255, 255, 0.72));
}

.home-section-head {
  margin-bottom: 20px;
}

.home-section-head h2 {
  margin: 0 0 6px;
  color: #17243c;
  font-size: 26px;
  line-height: 1.32;
  font-weight: 800;
}

.home-section-head h2 span {
  color: var(--primary);
}

.home-section-head p {
  margin: 0;
  color: #63728a;
  font-size: 14px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.stat-band article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  min-height: 98px;
  padding: 18px 16px;
}

.stat-band article + article {
  border-left: 1px solid #e8f0fb;
}

.stat-band img {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  background: #eef7ff;
  filter: brightness(0) saturate(100%) invert(48%) sepia(82%) saturate(1616%) hue-rotate(194deg) brightness(97%) contrast(91%);
}

.stat-band article:nth-child(3) img {
  background: #ebfaf2;
  filter: brightness(0) saturate(100%) invert(52%) sepia(49%) saturate(696%) hue-rotate(108deg) brightness(91%) contrast(88%);
}

.stat-band article:nth-child(4) img {
  background: #fff3e7;
  filter: brightness(0) saturate(100%) invert(51%) sepia(84%) saturate(729%) hue-rotate(343deg) brightness(98%) contrast(92%);
}

.stat-band strong {
  color: var(--primary);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
  white-space: nowrap;
}

.stat-band span {
  color: #64758d;
  font-size: 13px;
}

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

.course-card {
  min-height: 276px;
  padding: 20px 18px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.course-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.course-icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 50%;
}

.course-card.warm .course-icon {
  background: #fff3df;
  filter: brightness(0) saturate(100%) invert(57%) sepia(71%) saturate(736%) hue-rotate(356deg) brightness(99%) contrast(93%);
}

.course-card.green .course-icon {
  background: #eaf9ef;
  filter: brightness(0) saturate(100%) invert(49%) sepia(44%) saturate(716%) hue-rotate(108deg) brightness(91%) contrast(91%);
}

.course-card.blue .course-icon {
  background: #eaf4ff;
  filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(1996%) hue-rotate(198deg) brightness(96%) contrast(94%);
}

.course-card.purple .course-icon {
  background: #f0eaff;
  filter: brightness(0) saturate(100%) invert(47%) sepia(59%) saturate(965%) hue-rotate(218deg) brightness(92%) contrast(91%);
}

.course-card h3 {
  margin: 8px 0 0;
  color: #173256;
  font-size: 20px;
  line-height: 1.2;
}

.course-card strong {
  display: block;
  margin-top: 2px;
  color: #566b86;
  font-size: 13px;
}

.course-card p {
  min-height: 42px;
  margin: 10px 0 14px;
  color: #5f7188;
  font-size: 13px;
  line-height: 1.6;
}

.course-photo {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.ecosystem-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.ecosystem-panel article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 164px;
  padding: 22px 18px 18px;
  text-align: center;
}

.ecosystem-panel article + article {
  border-left: 1px solid #e8f0fb;
}

.ecosystem-panel img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(1996%) hue-rotate(198deg) brightness(96%) contrast(94%);
}

.ecosystem-panel article:nth-child(2) img,
.ecosystem-panel article:nth-child(6) img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(51%) saturate(869%) hue-rotate(219deg) brightness(94%) contrast(90%);
}

.ecosystem-panel article:nth-child(3) img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(66%) saturate(892%) hue-rotate(355deg) brightness(98%) contrast(90%);
}

.ecosystem-panel article:nth-child(4) img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(48%) saturate(795%) hue-rotate(101deg) brightness(91%) contrast(90%);
}

.ecosystem-panel h3 {
  margin: 0 0 8px;
  color: #173256;
  font-size: 16px;
}

.ecosystem-panel p {
  flex: 1;
  margin: 0;
  color: #65758d;
  font-size: 12px;
  line-height: 1.55;
}

.growth-card {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(217, 238, 255, 0.9), rgba(241, 248, 255, 0.96)),
    #e7f4ff;
  box-shadow: var(--shadow-md);
}

.growth-card > img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.growth-data {
  display: grid;
  grid-template-columns: 0.92fr 0.92fr 1.2fr;
  align-items: center;
  gap: 0;
  margin: 34px 36px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.growth-data article,
.growth-data blockquote {
  min-height: 132px;
  margin: 0;
  padding: 26px 24px;
}

.growth-data article + article,
.growth-data blockquote {
  border-left: 1px solid #ddeaf7;
}

.growth-data span {
  display: block;
  color: #4e6b91;
  font-size: 13px;
  font-weight: 700;
}

.growth-data strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.growth-data small,
.growth-data cite {
  color: #5f7087;
  font-size: 13px;
  font-style: normal;
}

.growth-data p {
  margin: 12px 0 10px;
  color: #213653;
  font-size: 17px;
  line-height: 1.55;
}

.case-carousel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 16px;
}

.circle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dbe8f7;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.circle-button img {
  width: 18px;
  height: 18px;
}

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

.home-case-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.home-case-grid img {
  width: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
}

.home-case-grid span {
  position: absolute;
  left: 10px;
  top: 80px;
  display: inline-flex;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(245, 184, 72, 0.94);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.home-case-grid h3 {
  margin: 16px 14px 4px;
  color: #1b314e;
  font-size: 15px;
}

.home-case-grid p {
  min-height: 34px;
  margin: 0 14px 16px;
  color: #66758c;
  font-size: 12px;
  line-height: 1.55;
}

.more-link {
  justify-content: center;
  width: fit-content;
  margin: 18px auto 0;
}

.contact-section {
  padding: 14px 0 20px;
  border-top: 1px solid rgba(224, 237, 250, 0.72);
  background:
    linear-gradient(90deg, rgba(226, 242, 255, 0.82) 0%, rgba(248, 252, 255, 0.94) 48%, rgba(255, 255, 255, 0.98) 48%),
    #eff8ff;
}

.contact-section .section-index {
  top: 18px;
}

.contact-section .home-section-head {
  margin-bottom: 22px;
}

.contact-section .home-section-head h2 {
  color: #2f7fde;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(520px, 1.05fr);
  align-items: start;
  gap: 34px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 488px;
}

.action-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 136px;
  padding: 18px 12px;
  border: 1px solid rgba(214, 228, 243, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(47, 128, 237, 0.09);
  text-align: center;
}

.action-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(1996%) hue-rotate(198deg) brightness(96%) contrast(94%);
}

.action-grid a:nth-child(2) img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(48%) saturate(795%) hue-rotate(101deg) brightness(91%) contrast(90%);
}

.action-grid a:nth-child(3) img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(51%) saturate(869%) hue-rotate(219deg) brightness(94%) contrast(90%);
}

.action-grid strong {
  color: #19365c;
  font-size: 16px;
  line-height: 1.32;
  word-break: keep-all;
}

.action-grid span {
  color: #65758d;
  font-size: 13px;
  line-height: 1.4;
}

.message-form {
  position: relative;
  min-height: 258px;
  margin-top: -22px;
  padding: 20px 160px 12px 28px;
  overflow: hidden;
  border: 1px solid rgba(218, 230, 244, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(76, 124, 181, 0.1);
}

.message-form h2 {
  margin: 0 0 4px;
  color: #1b2d49;
  font-size: 18px;
}

.message-form p {
  margin: 0 0 8px;
  color: #6a7890;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  margin-bottom: 6px;
}

.message-form label {
  display: block;
  margin: 0;
}

.message-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #dce8f5;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.98);
  color: #1c2d47;
  font: inherit;
  font-size: 12px;
}

.message-form .message-field {
  margin: 0 0 10px;
}

.message-form textarea {
  min-height: 45px;
  padding-top: 7px;
  resize: vertical;
}

.form-submit {
  display: block;
  width: min(100%, 300px);
  min-height: 32px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, #3b94ff, #1f73e8);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(47, 128, 237, 0.18);
}

.form-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 0;
  color: #3b628b;
  font-size: 12px;
}

.form-phone img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(1996%) hue-rotate(198deg) brightness(96%) contrast(94%);
}

.contact-mascot {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 124px;
  pointer-events: none;
}

.home-footer {
  background: linear-gradient(135deg, #318cf2 0%, #1d72df 100%);
  color: #fff;
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 100px;
  align-items: center;
  gap: 28px;
  min-height: 104px;
}

.footer-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.footer-info p:first-child {
  font-size: 19px;
  font-weight: 800;
}

.footer-info img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(10, 56, 117, 0.18);
}

.footer-social a img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.footer-social a:nth-child(1) {
  background: #41c060;
}

.footer-social a:nth-child(2) {
  background: #111827;
}

.footer-social a:nth-child(3) {
  background: #ff9f38;
}

.footer-social a.is-active {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(10, 56, 117, 0.24);
}

.footer-qr {
  width: 88px;
  height: 88px;
  padding: 4px;
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.footer-copy {
  padding: 8px 24px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .section-index {
    left: 16px;
  }

  .stat-band article {
    padding-right: 22px;
    padding-left: 22px;
  }

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

  .ecosystem-panel article:nth-child(4) {
    border-left: 0;
  }

  .ecosystem-panel article:nth-child(n + 4) {
    border-top: 1px solid #e8f0fb;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .home-page .nav-shell {
    flex-wrap: nowrap;
    gap: 22px;
    padding: 0;
  }

  .home-page .primary-nav {
    order: initial;
    width: auto;
    justify-content: center;
    gap: 24px;
    overflow: visible;
    font-size: 13px;
  }

  .home-page .round-action {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .home-page {
    --home-header-height: 108px;
  }

  .growth-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 28px 0 84px;
  }

  .hero-content {
    top: clamp(38px, 7vh, 68px);
    right: 8px;
    width: min(250px, calc(100vw - 28px));
    margin-top: 0;
  }

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

  .hero-visual {
    width: auto;
    opacity: 1;
  }

  .hero-visual img {
    object-position: 76% center;
  }

  .stat-band,
  .course-grid,
  .home-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-band article:nth-child(3) {
    border-left: 0;
  }

  .stat-band article:nth-child(n + 3) {
    border-top: 1px solid #e8f0fb;
  }

  .growth-card > img {
    max-height: 260px;
  }

  .case-carousel {
    grid-template-columns: 1fr;
  }

  .circle-button {
    display: none;
  }

  .contact-grid {
    gap: 24px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }
}

@media (max-width: 640px) {
  .home-section,
  .contact-section {
    padding: 28px 0 24px;
  }

  .section-index {
    top: 10px;
    font-size: 24px;
  }

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

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

  .hero-copy p {
    font-size: 15px;
    margin-bottom: 20px;
  }

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

  .hero-points div {
    grid-template-columns: 24px minmax(0, 1fr);
    min-width: 0;
  }

  .hero-points img {
    width: 26px;
    height: 26px;
  }

  .hero-points strong {
    font-size: 14px;
  }

  .hero-points span {
    font-size: 11px;
  }

  .hero-scroll-cue {
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .home-section-head h2 {
    font-size: 22px;
  }

  .stat-band,
  .course-grid,
  .ecosystem-panel,
  .home-case-grid,
  .action-grid,
  .form-row,
  .growth-data {
    grid-template-columns: 1fr;
  }

  .stat-band article,
  .stat-band article:nth-child(3),
  .ecosystem-panel article,
  .ecosystem-panel article:nth-child(4) {
    border-left: 0;
  }

  .stat-band article + article,
  .ecosystem-panel article + article {
    border-top: 1px solid #e8f0fb;
  }

  .growth-data {
    margin: 18px;
  }

  .growth-data article + article,
  .growth-data blockquote {
    border-left: 0;
    border-top: 1px solid #ddeaf7;
  }

  .home-case-grid span {
    top: 94px;
  }

  .message-form {
    padding: 20px 18px;
  }

  .form-submit {
    width: 100%;
  }

  .form-phone {
    margin-left: 0;
  }

  .contact-mascot {
    position: static;
    width: 96px;
    margin: 12px 0 0 auto;
  }
}

@media (max-width: 560px) {
  .home-page {
    --home-scroll-offset: 0px;
  }
}

/* Latest homepage UI */
.home-page {
  --home-header-height: 82px;
  --home-scroll-offset: var(--home-header-height);
  --container: 1160px;
  --home-gutter: 48px;
  --home-content-max: 1720px;
  --home-content-gutter: clamp(48px, 6vw, 120px);
  --home-card-radius: 28px;
  --home-card-shadow: 0 18px 42px rgba(61, 112, 166, 0.14);
  --home-card-border: rgba(221, 234, 247, 0.88);
  background: #f7fbff;
}

html {
  scroll-behavior: smooth;
}

.home-page [v-cloak] {
  display: none;
}

.home-page .container {
  width: min(100% - var(--home-gutter), var(--container));
}

.home-page .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.home-page.is-home-scrolled .site-header {
  border-bottom-color: rgba(226, 237, 249, 0.82);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(47, 128, 237, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .nav-shell {
  width: calc(100% - clamp(32px, 3.4vw, 56px));
  max-width: none;
  min-height: 82px;
  gap: clamp(24px, 3vw, 52px);
}

.home-page .brand img {
  width: 150px;
}

.home-page .primary-nav {
  gap: clamp(26px, 2.5vw, 46px);
  color: #27354a;
  font-size: 15px;
  font-weight: 500;
}

.home-page .round-action {
  width: 40px;
  height: 40px;
}

.section-index {
  display: none;
}

.home-hero {
  display: block;
  height: 100dvh;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

@supports not (height: 100dvh) {
  .home-hero {
    height: 100vh;
  }
}

.home-hero::after {
  display: none;
}

.hero-content {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
  pointer-events: auto;
  animation: hero-visual-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: 8% center;
  transform: scale(1.12, 1.2);
  transform-origin: center center;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) {
  .home-hero:hover .hero-visual img {
    transform: scale(1.132, 1.212);
  }
}

.home-page .hero-scroll-cue {
  bottom: clamp(28px, 5vh, 48px);
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-color: rgba(47, 128, 237, 0.28);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(36, 111, 210, 0.2);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.home-page .hero-scroll-cue:hover {
  transform: translateX(-50%) translateY(-3px);
}

.home-page .hero-scroll-cue::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(47, 128, 237, 0.16);
  border-radius: inherit;
  animation: hero-cue-ring 2.2s ease-out infinite;
  content: "";
}

.home-page .hero-scroll-cue span {
  margin-top: -3px;
}

@keyframes hero-visual-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(1.01);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-cue-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

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

  .hero-visual,
  .hero-visual img,
  .home-section > .container,
  .home-page .hero-scroll-cue,
  .home-page .hero-scroll-cue::before {
    animation: none !important;
    transition: none !important;
  }

  .home-section > .container {
    opacity: 1 !important;
    transform: none !important;
  }
}

.home-section {
  padding: 2px 0;
  overflow: visible;
  border-top: 0;
  background: transparent;
}

.home-section:nth-of-type(even) {
  background: transparent;
}

.home-section > .container {
  position: relative;
  width: min(100% - var(--home-content-gutter), var(--home-content-max));
  overflow: hidden;
  padding: 40px clamp(32px, 3.5vw, 56px) 42px;
  border-radius: var(--home-card-radius);
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: opacity, transform;
}

.home-section.is-visible > .container {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: home-section-reveal 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes home-section-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.section-bg {
  position: absolute;
  top: 0 !important;
  right: 0;
  bottom: 0;
  left: 0 !important;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  transform: scale(
    var(--section-bg-scale-x, 1),
    var(--section-bg-scale-y, 1)
  );
  transform-origin: center;
  user-select: none;
}

.home-section > .container > :not(.section-bg) {
  position: relative;
  z-index: 1;
}

.deep-section > .container {
  min-height: 255px;
}

.deep-section {
  --section-bg-scale-x: 1.03;
  --section-bg-scale-y: 1.2;
  padding-top: 4px;
}

.courses-section {
  --section-bg-scale-x: 1.023;
  --section-bg-scale-y: 1.11;
  margin-top: 4px;
}

.courses-section > .container {
  min-height: 444px;
}

.ecosystem-section {
  --section-bg-scale-x: 1.021;
  --section-bg-scale-y: 1.112;
  margin-top: 4px;
}

.ecosystem-section > .container {
  min-height: 331px;
}

.growth-section {
  --section-bg-scale-x: 1.037;
  --section-bg-scale-y: 1.125;
  margin-top: 4px;
}

.growth-section > .container {
  min-height: 390px;
}

.home-section-head {
  margin-bottom: 18px;
}

.home-section-head h2 {
  margin-bottom: 8px;
  color: #2b3445;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0;
}

.home-section-head h2 span {
  color: #2f80ed;
}

.home-section-head p {
  color: #7b8799;
  font-size: 15px;
  font-weight: 600;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 100%;
  margin-top: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stat-band article {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  min-height: 82px;
  padding: 0 22px 0 90px;
}

.stat-band article + article {
  border-left: 1px solid #e5edf7;
}

.stat-band article::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #edf6ff;
  content: "";
  transform: translateY(-50%);
}

.stat-band article:nth-child(3)::before {
  background: #e8f8ef;
}

.stat-band article:nth-child(4)::before {
  background: #fff1e3;
}

.stat-band img {
  position: absolute;
  top: 50%;
  left: 33px;
  z-index: 1;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  transform: translateY(-50%);
}

.stat-band article:nth-child(3) img,
.stat-band article:nth-child(4) img {
  background: transparent;
}

.stat-band strong {
  color: #2f80ed;
  font-size: 36px;
}

.stat-band span {
  color: #4f5f73;
  font-size: 14px;
  font-weight: 600;
}

.course-grid {
  gap: 16px;
}

.course-card {
  position: relative;
  min-height: 286px;
  padding: 28px 24px 22px;
  border-color: rgba(220, 233, 246, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(64, 115, 171, 0.08);
}

.course-card::before {
  position: absolute;
  top: 28px;
  left: 24px;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff3df;
  content: "";
}

.course-card.green::before {
  background: #eaf9ef;
}

.course-card.blue::before {
  background: #eaf4ff;
}

.course-card.purple::before {
  background: #f0eaff;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(64, 115, 171, 0.14);
}

.course-icon {
  position: absolute;
  top: 40px;
  left: 36px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
}

.course-card.warm .course-icon,
.course-card.green .course-icon,
.course-card.blue .course-icon,
.course-card.purple .course-icon {
  background: transparent;
}

.course-card h3 {
  margin: 0 0 0 68px;
  font-size: 21px;
}

.course-card strong {
  display: block;
  margin: 0 0 0 68px;
  color: #67778d;
  font-size: 14px;
}

.course-card p {
  min-height: 48px;
  margin: 18px 0 10px;
  color: #5e6e84;
  font-size: 14px;
  line-height: 1.5;
}

.course-photo {
  aspect-ratio: 1.9 / 1;
  border-radius: 8px;
}

.more-link {
  margin-top: 10px;
  font-size: 14px;
}

.ecosystem-panel {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ecosystem-panel article {
  min-height: 150px;
  padding: 24px 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.ecosystem-panel article + article {
  border-left: 1px solid #e6eef8;
}

.ecosystem-panel img {
  width: 42px;
  height: 42px;
}

.ecosystem-panel h3 {
  color: #286fd6;
  font-size: 15px;
}

.ecosystem-panel p {
  color: #617187;
  font-size: 13px;
}

.growth-card {
  grid-template-columns: minmax(410px, 0.8fr) minmax(0, 1.2fr);
  height: 225px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      #82b9eb 0%,
      #b9daf5 48%,
      #edf7ff 100%
    );
  box-shadow: none;
}

.growth-card > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 981px) {
  .growth-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .growth-card > img {
    width: auto;
    height: 116.7%;
    max-width: none;
    margin-left: -25px;
    object-fit: contain;
    object-position: left center;
    transform: translateY(-22px);
  }
}

.growth-data {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(58, 113, 176, 0.08);
}

.growth-data article,
.growth-data blockquote {
  min-height: 0;
  padding: 20px 16px;
}

.growth-data span {
  color: #4b78c1;
  font-size: 14px;
}

.growth-data strong {
  color: #2f80ed;
  font-size: 34px;
}

.growth-data p {
  color: #334155;
  font-size: 15px;
}

.home-cases,
.contact-section {
  display: none;
}

.home-footer {
  margin-top: 10px;
}

.home-footer .footer-contact {
  width: min(100% - var(--home-content-gutter), var(--home-content-max));
}

.footer-contact {
  min-height: 104px;
}

.footer-info p {
  font-size: 13px;
  line-height: 1.45;
}

.footer-info p:first-child {
  font-size: 20px;
  line-height: 1.2;
}

.footer-info img {
  width: 22px;
  height: 22px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.footer-qr {
  width: 88px;
  height: 88px;
}

.footer-copy {
  padding: 8px 24px 10px;
  font-size: 11px;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .home-page .nav-shell {
    min-height: 70px;
  }

  .home-page .brand img {
    width: 118px;
  }

  .home-page .primary-nav {
    gap: 24px;
  }

  .home-section > .container {
    padding: 18px 32px 20px;
  }

  .stat-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .stat-band article:nth-child(3) {
    border-left: 1px solid #e5edf7;
  }

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

  .ecosystem-panel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ecosystem-panel article:nth-child(4) {
    border-left: 1px solid #e6eef8;
  }

  .growth-card {
    grid-template-columns: minmax(285px, 0.8fr) minmax(0, 1.2fr);
  }

  .growth-card > img {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .home-page {
    --home-header-height: 108px;
    --home-gutter: 28px;
    --home-content-gutter: 28px;
  }

  .home-hero {
    height: 100dvh;
    min-height: 100svh;
    padding-top: 0;
  }

  .hero-visual {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .home-page .hero-scroll-cue {
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .home-section {
    padding: 8px 0;
  }

  .home-section > .container {
    width: min(100% - 28px, var(--container));
    padding: 28px 22px 30px;
    border-radius: 20px;
  }

  .home-section-head h2 {
    font-size: 25px;
  }

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

  .deep-section > .container,
  .courses-section > .container,
  .ecosystem-section > .container,
  .growth-section > .container {
    min-height: auto;
  }

  .stat-band,
  .course-grid,
  .ecosystem-panel,
  .growth-data {
    grid-template-columns: 1fr;
  }

  .course-grid {
    gap: 14px;
  }

  .course-card {
    min-height: auto;
    padding: 20px 16px 16px;
  }

  .course-card::before {
    top: 20px;
    left: 16px;
    width: 44px;
    height: 44px;
  }

  .course-icon {
    top: 30px;
    left: 26px;
    width: 24px;
    height: 24px;
  }

  .course-card h3,
  .course-card strong {
    margin-left: 56px;
  }

  .course-card h3 {
    font-size: 18px;
  }

  .course-card strong,
  .course-card p,
  .more-link {
    font-size: 13px;
  }

  .course-card p {
    min-height: 0;
    margin: 14px 0 8px;
  }

  .course-photo {
    aspect-ratio: 2.45 / 1;
  }

  .ecosystem-panel article {
    min-height: auto;
    padding: 16px 12px;
  }

  .growth-card {
    height: auto;
    grid-template-columns: 1fr;
  }

  .stat-band article,
  .stat-band article:nth-child(3),
  .ecosystem-panel article,
  .ecosystem-panel article:nth-child(4) {
    border-left: 0;
  }

  .stat-band article + article,
  .ecosystem-panel article + article {
    border-top: 1px solid #e6eef8;
  }

  .growth-card > img {
    width: 100%;
    height: auto;
    max-height: 260px;
  }

  .stat-band article {
    min-height: 78px;
    padding: 16px 0 16px 76px;
  }

  .stat-band article::before {
    left: 0;
    width: 52px;
    height: 52px;
  }

  .stat-band img {
    left: 13px;
    width: 26px;
    height: 26px;
  }

  .stat-band strong {
    font-size: 28px;
  }

  .stat-band span {
    font-size: 13px;
  }

  .growth-data {
    margin: 18px;
  }

  .growth-data article + article,
  .growth-data blockquote {
    border-left: 0;
    border-top: 1px solid #ddeaf7;
  }

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

  .stat-band article + article {
    border-top: 0;
  }

  .stat-band article:nth-child(2n) {
    border-left: 1px solid #e6eef8;
  }

  .stat-band article:nth-child(n + 3) {
    border-top: 1px solid #e6eef8;
  }

  .stat-band article {
    min-height: 74px;
    padding: 14px 8px 14px 60px;
  }

  .stat-band article::before {
    width: 44px;
    height: 44px;
  }

  .stat-band img {
    left: 10px;
    width: 24px;
    height: 24px;
  }

  .stat-band strong {
    font-size: 24px;
  }

  .stat-band span {
    font-size: 12px;
  }

  .ecosystem-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ecosystem-panel article + article {
    border-top: 0;
  }

  .ecosystem-panel img {
    width: 34px;
    height: 34px;
  }

  .ecosystem-panel h3 {
    font-size: 13px;
  }

  .ecosystem-panel p {
    font-size: 12px;
  }

  .growth-card > img {
    max-height: 220px;
  }

  .growth-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 12px;
  }

  .growth-data article,
  .growth-data blockquote {
    padding: 12px 10px;
  }

  .growth-data article + article {
    border-left: 1px solid #ddeaf7;
    border-top: 0;
  }

  .growth-data blockquote {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .growth-data strong {
    font-size: 24px;
  }

  .growth-data p {
    margin: 8px 0;
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  .home-page .primary-nav {
    gap: 18px;
  }

  .hero-visual {
    aspect-ratio: auto;
  }

  .hero-visual img {
    object-position: 8% center;
    transform: scale(1.16, 1.24);
    transform-origin: left center;
  }

  .course-card {
    padding: 20px 16px 16px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }
}

/* Homepage hero copy: editable text layered over the mascot artwork. */
.home-page .home-hero .hero-content {
  position: absolute !important;
  top: 46% !important;
  right: auto !important;
  left: clamp(48px, 5vw, 96px) !important;
  z-index: 3;
  width: min(860px, 57vw) !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  transform: translateY(-50%);
}

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

.home-page .home-hero .hero-copy h1 {
  max-width: none;
  margin: 0 0 clamp(18px, 2.2vh, 30px);
  color: #222936;
  font-size: clamp(42px, 4.15vw, 76px);
  line-height: 1.17;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.86);
}

.home-page .home-hero .hero-copy h1 span {
  display: block;
  margin-bottom: clamp(8px, 1.2vh, 16px);
  color: #3277db;
  font-size: clamp(56px, 5.25vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.home-page .home-hero .hero-copy > p {
  margin: 0 0 clamp(28px, 4.8vh, 54px);
  color: #46576d;
  font-size: clamp(18px, 1.6vw, 29px);
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.94);
}

.home-page .home-hero .hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(820px, 55vw);
  gap: 0;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(46, 117, 189, 0.12);
  backdrop-filter: blur(12px);
}

.home-page .home-hero .hero-points div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 14px;
  min-width: 0;
  padding: 0 20px;
}

.home-page .home-hero .hero-points div + div {
  border-left: 1px solid rgba(98, 139, 187, 0.2);
}

.home-page .home-hero .hero-points img {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
}

.home-page .home-hero .hero-points strong {
  overflow-wrap: anywhere;
  color: #27364a;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.3;
}

.home-page .home-hero .hero-points span {
  color: #506077;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .home-page .home-hero .hero-content {
    top: 44% !important;
    left: 40px !important;
    width: 56vw !important;
  }

  .home-page .home-hero .hero-points {
    width: 55vw;
    padding: 16px 8px;
  }

  .home-page .home-hero .hero-points div {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 3px 8px;
    padding: 0 10px;
  }

  .home-page .home-hero .hero-points img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 760px) {
  .home-page .home-hero .hero-content {
    top: 25% !important;
    right: 20px !important;
    left: 20px !important;
    width: auto !important;
    transform: none;
  }

  .home-page .home-hero .hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(29px, 8.5vw, 38px);
    line-height: 1.18;
  }

  .home-page .home-hero .hero-copy h1 span {
    margin-bottom: 6px;
    font-size: clamp(39px, 12vw, 54px);
  }

  .home-page .home-hero .hero-copy > p {
    max-width: 88%;
    margin-bottom: 18px;
    font-size: 16px;
  }

  .home-page .home-hero .hero-points {
    width: 100%;
    padding: 12px 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
  }

  .home-page .home-hero .hero-points div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 5px;
    text-align: center;
  }

  .home-page .home-hero .hero-points img {
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
  }

  .home-page .home-hero .hero-points strong {
    font-size: 12px;
  }

  .home-page .home-hero .hero-points span {
    font-size: 10px;
  }
}
