@font-face {
  font-family: "DINOT-Bold";
  src: url("../assets/font/DINOT-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

:root {
  --muted: #a1a1a1;
  --blue: #3fbcff;
  --blue-deep: #0e3d67;
  --blue-line: #dfeeff;
  --card-shadow: 0 4px 24px rgba(8, 52, 84, 0.2);
  --ink: #0b2940;
  --frame-shadow: 0 18px 34px rgba(17, 49, 84, 0.14);
}

body {
  background: #fff;
}

.hero-inner,
.stats-inner,
.feature-inner {
  width: var(--content-width);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  height: 650px;
  background:
    /* linear-gradient(140deg, #eff7ff 4%, #cee7ff 31%, #8cc5ff 67%, #6fb2ff 100%), */
    url(../assets/home/squirrel-banner.png) ;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hero-inner {
  position: relative;
  height: 100%;
}

.hero-copy {
  position: absolute;
  top: 175px;
  left: 508px;
  width: 344px;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: 72px;
  line-height: 100px;
  font-weight: 700;
}

.hero-copy p {
  margin: 18px 0 72px;
  font-size: 24px;
  line-height: 34px;
  color: #343434;
}

.hero-geometry {
  position: absolute;
  background: rgba(255, 255, 255, 0.45);
}

.hero-geometry-left {
  left: -106px;
  top: -55px;
  width: 520px;
  height: 620px;
  clip-path: polygon(0 18%, 80% 0, 56% 58%, 14% 86%);
}

.hero-geometry-bottom {
  left: -10px;
  bottom: 0;
  width: 250px;
  height: 215px;
  clip-path: polygon(0 100%, 48% 45%, 100% 0, 100% 100%);
  background: rgba(255, 255, 255, 0.88);
}

.hero-geometry-right {
  right: -70px;
  top: 12px;
  width: 630px;
  height: 560px;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 74%);
  background: rgba(107, 179, 255, 0.24);
}

.hero-formula {
  position: absolute;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cambria Math", "Times New Roman", serif;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.26);
}

.formula-a {
  right: 155px;
  top: 89px;
  font-size: 36px;
  transform: rotate(-4deg);
}

.formula-b {
  right: 123px;
  top: 232px;
  font-size: 54px;
  transform: rotate(7deg);
}

.formula-c {
  right: 171px;
  top: 354px;
  font-size: 58px;
  transform: rotate(8deg);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  height: 60px;
  padding: 0 38px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}

.pill-button::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 18px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg);
}

.stats-section {
  background: #fff;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: 79px 303px;
}

.stat-card {
  text-align: center;
}

.stat-card img{
  display: block;
  width: 288px;
  margin: 0 auto;
  margin-top: 30px;
}

.stat-card span {
  display: block;
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 33px;
}

.stat-card strong {
  font-family: "DINOT-Bold", sans-serif;
  font-size: 68px;
  line-height: 1;
  font-weight: 700;
}

.stat-card em {
  margin-left: 12px;
  font-style: normal;
  font-size: 24px;
  line-height: 33px;
}

.stats-divider {
  width: 1px;
  height: 107px;
  background: #e8e8e8;
}

.feature-section {
  padding: 0;
}

.feature-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 582px;
  padding: 0 30px;
}

.feature-inner-left {
  min-height: 627px;
}

.feature-section-last .feature-inner {
  min-height: 745px;
}

.feature-copy {
  width: 398px;
}

.feature-inner-left .feature-copy {
  width: 507px;
}

.feature-section-last .feature-copy {
  width: 529px;
}

.feature-copy h2 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 53px;
  font-weight: 600;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 40px;
}

.feature-visual {
  position: relative;
}

.shadow-card {
  /* box-shadow: var(--card-shadow); */
}

.feature-visual-blue {
  /* width: 576px;
  height: 340px; */
  width: 571px;
  height: 361px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--frame-shadow);
  overflow: hidden;
  &::before{
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 13px;
  }
  img{
    width: 540px;
    border-radius: 13px;
  }
}

.lesson-window {
  width: 538px;
  height: 309px;
  background: #fff;
  border: 6px solid #0d476d;
  border-radius: 12px;
  overflow: hidden;
}

.lesson-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(90deg, #ffe5c6 0%, #fffbf2 100%);
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffb66b;
  color: #fff;
  font-size: 14px;
}

.corner {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: linear-gradient(135deg, #7ea6ff 0%, #bfd5ff 100%);
}

.lesson-window-body {
  display: flex;
  height: calc(100% - 44px);
}

.lesson-lines {
  flex: 1;
  padding: 20px 18px;
}

.lesson-lines span {
  display: block;
  height: 10px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #222 0%, #5b5b5b 70%, transparent 70%);
  opacity: 0.24;
}

.lesson-teacher {
  width: 152px;
  background: #edf7ff;
}

.lesson-teacher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.feature-visual-paper {
  /* width: 636px;
  height: 437px; */
  width: 570px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--frame-shadow);
  overflow: hidden;
  &::before{
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 13px;
  }
  img{
    width: 540px;
    border-radius: 13px;
  }
}

.paper-card {
  width: 586px;
  height: 361px;
  border: 6px solid #0e3d67;
  border-radius: 6px;
  background: #fbf4ea;
  box-shadow: 0 4px 16px rgba(14, 61, 103, 0.12);
}

.paper-title {
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 700;
  color: #7a5f3d;
}

.paper-content {
  padding: 0 22px 18px;
}

.paper-content span {
  display: block;
  height: 12px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, rgba(122, 95, 61, 0.5) 0%, rgba(122, 95, 61, 0.18) 76%, transparent 76%);
}

.feature-visual-grid {
  width: 590px;
  height: 428px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-grid {
  width: 548px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scene-card {
  min-height: 94px;
  padding: 16px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(31, 92, 150, 0.12);
}

.scene-card-large {
  grid-column: span 2;
  min-height: 118px;
}

.scene-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-card-logo img {
  width: 92px;
  height: auto;
}

.scene-badge {
  width: 84px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #63b7ff 0%, #c3e4ff 100%);
  margin-bottom: 14px;
}

.scene-lines span {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3d8ce0 0%, rgba(61, 140, 224, 0.18) 78%, transparent 78%);
}

.site-footer {
  margin-top: 45px;
}


@media (max-width: 1440px) {
    .site-header,
  .page-main,
  .site-footer,
  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .section-inner-partners {
    width: 100%;
    min-width: 1200px;
  }

  .feature-inner{
    padding: 0 !important;
  }

}