.section-2 {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--bg);
  text-align: left;
}
.section-2 h2,
.section-2 h3,
.section-2 p {
  margin: 0;
}
.section-2__upper,
.section-2__lower {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.section-2__upper {
  overflow: visible;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(80px, 9vw, 160px) clamp(20px, 4vw, 80px) clamp(60px, 6vw, 120px);
  background-color: var(--bg);
  background-image: url("../images/hero/section-2-upper.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.section-2__lower {
  min-height: clamp(420px, 50vw, 720px);
  padding: clamp(80px, 8vw, 140px) clamp(40px, 6vw, 120px);
  background-color: #0A1428;
  background-image: url("../images/hero/section-2-lower.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.section-2__bg-video,
.section-2__bg-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-2__bg-video {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
}
.section-2__bg-mask {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(10,20,40,.45) 0%,
      rgba(10,20,40,.55) 50%,
      rgba(10,20,40,.65) 100%);
}
.section-2__upper-head {
  position: relative;
  z-index: 1;
  width: min(1280px, 92vw);
  margin: 0 auto;
  text-align: center;
}
.section-2__upper-title {
  color: var(--text);
  font-size: clamp(32px, 3.8vw, 64px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
.section-2__platforms {
  max-width: 1200px;
  min-height: clamp(140px, 14vw, 200px);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 48px) clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 48px);
  flex-wrap: nowrap;
}
.section-2__platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, .6vw, 12px);
  flex-shrink: 0;
  opacity: .45;
  filter: grayscale(.4);
  transform: scale(1) translateZ(0);
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease),
    filter .55s var(--ease);
  will-change: transform, filter, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.section-2__platform.is-spot {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 8px 24px rgba(10,20,40,.15));
  box-shadow: none;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  transform: scale(1.4) translateZ(0);
}
.section-2__platform img {
  display: block;
  width: clamp(36px, 3.4vw, 60px);
  height: clamp(36px, 3.4vw, 60px);
  object-fit: contain;
}
.section-2__platform-name {
  color: var(--text);
  font-size: clamp(11px, .8vw, 14px);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.section-2__platform.is-spot .section-2__platform-name {
  color: var(--text);
  font-weight: 600;
}
.section-2__upper-video-wrap {
  position: relative;
  display: block;
  width: min(1280px, 88vw);
  margin: clamp(40px, 5vw, 80px) auto clamp(-140px, -10vw, -100px);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-composite: intersect;
}
.section-2__upper-video-wrap .section-2__bg-video {
  position: relative;
  z-index: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.section-2__cards {
  position: relative;
  z-index: 3;
  width: min(1280px, 92vw);
  margin: 0 auto;
  display: flex;
  gap: clamp(16px, 1.2vw, 24px);
}
.section-2__card {
  flex: 1 1 0;
  min-height: clamp(360px, 28vw, 480px);
  padding: clamp(20px, 1.6vw, 32px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: clamp(12px, .8vw, 16px);
  background: rgba(255,255,255,.55);
  box-shadow: 0 24px 60px rgba(10,20,40,.08);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.section-2__card-title {
  margin-top: clamp(28px, 2.2vw, 44px);
  margin-bottom: clamp(20px, 1.8vw, 32px);
  color: var(--text);
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
.section-2__card-icon {
  width: 100%;
  height: clamp(110px, 12vw, 170px);
  flex: 1 1 clamp(110px, 12vw, 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
}
.section-2__card-icon svg {
  display: block;
  max-width: clamp(64px, 6vw, 80px);
  max-height: clamp(64px, 6vw, 80px);
}
.section-2__pills {
  margin-top: auto;
  padding-top: clamp(24px, 2vw, 36px);
  display: grid;
  gap: clamp(8px, .6vw, 12px);
  width: 100%;
}
.section-2__pill {
  width: 100%;
  padding: clamp(10px, .8vw, 14px) clamp(16px, 1.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: var(--text);
  font-size: clamp(12px, .85vw, 17px);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
.section-2__lower-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 5vw, 80px);
}
.section-2__claim-title {
  margin: 0;
  color: #F1F5F9;
  font-size: clamp(32px, 3.6vw, 64px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}
.section-2__stats-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.4vw, 48px);
  align-items: start;
}
.section-2__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-2__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(12px, 1.2vw, 24px));
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(241,245,249,.25);
}
.section-2__stat-num {
  display: block;
  margin-bottom: clamp(8px, 1vw, 16px);
  color: var(--accent);
  font-size: clamp(36px, 4vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.section-2__stat-desc {
  color: rgba(241,245,249,.8);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.4;
}
.section-2__cta-area {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2vw, 32px);
  text-align: center;
}
.section-2__cta-copy {
  margin: 0;
  color: rgba(241,245,249,.85);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}
.section-2__cta-area .tec-cta {
  min-width: clamp(180px, 14vw, 260px);
  height: clamp(52px, 3.6vw, 68px);
  padding: 0 clamp(28px, 2.4vw, 48px);
  border: none;
  background: rgba(255,255,255,.62);
  color: var(--text);
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 500;
  box-shadow: 0 14px 34px rgba(10,20,40,.08), inset 0 1px 0 rgba(255,255,255,.72);
}
.section-2__cta-area .tec-cta .cta-mask {
  background: var(--text);
}
@media (hover: hover) {
  .section-2__cta-area .tec-cta:hover .cta-text {
    color: var(--white);
  }
}
@media (max-width: 1023px) {
  .section-2__upper {
    min-height: 0;
    padding: 0 0 clamp(40px, 10vw, 64px);
    display: block;
  }

  .section-2__lower {
    min-height: clamp(520px, 82vw, 760px);
    padding: clamp(64px, 10vw, 100px) clamp(20px, 5vw, 48px);
    display: block;
  }

  .section-2__upper-head {
    width: 100%;
    margin-bottom: 0;
    padding: clamp(40px, 10vw, 64px) clamp(14px, 5vw, 20px) 0;
  }

  .section-2__upper-title {
    font-size: clamp(26px, 6.8vw, 36px);
  }

  .section-2__platforms {
    gap: clamp(14px, 2.2vw, 28px);
    padding: clamp(22px, 4vw, 36px) clamp(18px, 4vw, 36px);
    min-height: clamp(126px, 18vw, 168px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .section-2__platforms::-webkit-scrollbar {
    display: none;
  }

  .section-2__platform img {
    width: clamp(34px, 5vw, 50px);
    height: clamp(34px, 5vw, 50px);
  }

  .section-2__platform-name {
    font-size: clamp(11px, 1.7vw, 13px);
  }

  .section-2__upper-video-wrap {
    width: calc(100% - clamp(24px, 6vw, 40px));
    margin: clamp(24px, 6vw, 40px) auto clamp(-60px, -8vw, -40px);
    aspect-ratio: 16 / 9;
  }

  .section-2__cards {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0 0 clamp(16px, 4vw, 24px) clamp(16px, 5vw, 28px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scrollbar-width: none;
  }

  .section-2__cards::-webkit-scrollbar {
    display: none;
  }

  .section-2__card {
    flex: 0 0 clamp(280px, 80vw, 360px);
    min-height: clamp(320px, 78vw, 420px);
    padding: clamp(20px, 5vw, 28px);
  }

  .section-2__card-title {
    margin-top: clamp(20px, 6vw, 28px);
    margin-bottom: clamp(16px, 4vw, 24px);
    font-size: clamp(20px, 5.4vw, 26px);
  }

  .section-2__card-icon {
    height: clamp(96px, 24vw, 132px);
    flex-basis: clamp(96px, 24vw, 132px);
  }

  .section-2__card-icon svg {
    max-width: clamp(64px, 18vw, 76px);
    max-height: clamp(64px, 18vw, 76px);
  }

  .section-2__pill {
    padding: clamp(10px, 3vw, 13px) 14px;
    font-size: clamp(12px, 3.4vw, 15px);
  }

  .section-2__lower-content {
    gap: clamp(38px, 7vw, 58px);
  }

  .section-2__claim-title {
    font-size: clamp(30px, 6.4vw, 48px);
  }

  .section-2__stats-row {
    gap: clamp(18px, 3vw, 28px);
  }

  .section-2__stat-num {
    font-size: clamp(34px, 6vw, 54px);
  }

  .section-2__stat-desc {
    font-size: clamp(12px, 2.2vw, 15px);
  }

  .section-2__cta-area {
    gap: clamp(18px, 3vw, 26px);
  }

  .section-2__cta-copy {
    font-size: clamp(14px, 3.8vw, 17px);
  }

  .section-2__cta-area .tec-cta {
    width: calc(100% - clamp(32px, 8vw, 48px));
    height: 56px;
  }
}

@media (max-width: 767px) {
  .section-2__platforms {
    gap: clamp(12px, 3vw, 20px);
    padding: 16px;
    min-height: clamp(100px, 24vw, 140px);
  }

  .section-2__platform img {
    width: clamp(28px, 7vw, 40px);
    height: clamp(28px, 7vw, 40px);
  }

  .section-2__platform.is-spot {
    transform: scale(1.25);
  }

  .section-2__platform-name {
    font-size: clamp(10px, 2.6vw, 12px);
  }

  .section-2__lower {
    min-height: clamp(560px, 140vw, 760px);
    padding: clamp(58px, 16vw, 84px) clamp(16px, 5vw, 24px);
  }

  .section-2__lower-content {
    gap: clamp(32px, 9vw, 44px);
  }

  .section-2__claim-title {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  .section-2__stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 6vw, 36px);
  }

  .section-2__stat:not(:last-child)::after {
    display: none;
  }

  .section-2__stat-num {
    font-size: clamp(28px, 8vw, 42px);
  }

  .section-2__stat-desc {
    font-size: clamp(12px, 3.4vw, 14px);
  }

  .section-2__cta-area .tec-cta {
    width: 100%;
    min-width: 0;
  }
}

.section-2__platforms .section-2__platform.is-spot {
  opacity: 1 !important;
  filter: grayscale(0) drop-shadow(0 8px 24px rgba(10,20,40,.15)) !important;
  box-shadow: none !important;
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  transform: scale(1.4) translateZ(0) !important;
}

.section-2__platforms .section-2__platform.is-spot .section-2__platform-name {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 767px) {
  .section-2__platforms .section-2__platform.is-spot {
    transform: scale(1.25) translateZ(0) !important;
  }
}
