:root {
  --blue: #0024ff;
  --black: #000;
  --ink: #1d1d1d;
  --muted: #474747;
  --white: #fff;
  --page-width: 1440px;
  --header-height: clamp(72px, 6vw, 115px);
}

* {
  box-sizing: border-box;
  word-break: keep-all;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.mobile-break {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  background: #000;
}

.site-header img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}


.hero {
  padding-top: var(--header-height);
  background: #fff;
}

.hero-inner,
.section-inner {
  width: min(var(--page-width), calc(100% - 80px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  padding-top: 130px;
}

.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #000;
  font-family: "Pretendard", "Arial Black", Impact, sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.hero h1 > span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--blue);
  /* font-size: 12.5rem; */
}

.hero-stage {
  position: relative;
  height: 558px;
  margin-top: 0;
  z-index: 4;
}

.hero-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  width: 100%;
  height: 494px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(169, 184, 255, 0.92), rgba(255, 255, 255)),
    url("../img/assets/star-bg.jpg") center / cover;
  background-blend-mode: normal, screen;
}

.stage-penguin,
.stage-star,
.stage-shadow {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.stage-penguin-main {
  left: 50%;
  top: -170px;
  width: 380px;
  transform: translateX(-50%);
  z-index: 30;
}

.stage-penguin-skate {
  left: 11%;
  top: 135px;
  width: 184px;
  z-index: 3;
  transform: scaleX(-1);
}

.stage-penguin-hawaiian {
  left: 28%;
  top: 240px;
  width: 240px;
  z-index: 34;
}

.stage-penguin-boxing {
  right: 13.5%;
  top: 228px;
  width: 194px;
  z-index: 4;
  transform: scaleX(-1);
}

.stage-shadow {
  left: 50%;
  bottom: 14px;
  width: 402px;
  transform: translateX(-50%);
  opacity: 0.55;
  z-index: 1;
}

.stage-star-1 {
  left: 32%;
  top: 118px;
  width: 58px;
  z-index: 3;
}

.stage-star-2 {
  left: 22.5%;
  top: 282px;
  width: 62px;
  z-index: 3;
}

.stage-star-3 {
  left: 21%;
  top: 332px;
  width: 28px;
  z-index: 3;
}

.stage-star-4 {
  right: 34.5%;
  top: 336px;
  width: 36px;
  z-index: 3;
}

.service-pills {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 22px;
  margin-top: 45px;
}

.service-pills-track {
  display: flex;
  gap: 22px;
}

.service-pills-track .pill-clone {
  display: none;
}

.service-pills-track span:nth-child(2) {
  margin-right: 240px;
}

.service-pills-track span {
  /* min-width: 180px; */
  padding: 12px 40px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  box-sizing: border-box;
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: start;
  gap: 120px;
  margin-top: 116px;
}

.brand-line {
  margin: 0;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.about-copy {
  display: grid;
  gap: 14px;
  padding-bottom: 100px;
}

.about-copy p {
  margin: 0;
}

.eyebrow {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-copy p:last-child {
  color: #000;
  font-size: 1.2rem;
  line-height: 1.45;
}

.gradient-block {
  background:
    linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
}

.strategy-section,
.values-section,
.works-section {
  background: transparent;
}

.strategy-section {
  padding: 210px 0 120px;
}

.section-heading {
  text-align: left;
}

.works-section .section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #000;
  font-size: 4.375rem;
  font-weight: 600;
  line-height: 1.285;
}

.section-heading h2 .heading-accent {
  color: var(--blue);
}

.section-heading p {
  margin: 30px 0 0;
  max-width: 1440px;
  color: #000;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.43;
}

.works-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.result-panel {
  min-height: 500px;
  margin-top: 84px;
  padding: 60px;
  border-radius: 30px;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255) 38%, rgba(255, 255, 255, 0) 60%),
    url("../img/assets/works-bg.png") center right / 70% no-repeat;
  overflow: hidden;
}

.result-copy {
  max-width: 454px;
}

.result-copy h3,
.value-card h3 {
  margin: 0;
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
}

.result-copy p,
.value-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.values-section {
  padding: 108px 0 120px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 50px;
}

.value-card {
  position: relative;
  min-height: 600px;
  padding: 60px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  right: -20%;
  bottom: 50%;
  transform: translateY(50%);
  width: 160%;
  height: 60%;
  background: bottom right / contain no-repeat;
  opacity: 0.08;
  transition: opacity 0.25s ease;
}

.value-card-light:hover::before {
  opacity: 0.15;
}

.value-card > * {
  position: relative;
}

.value-card-light {
  background: #fff;
}

.value-card-light h3,
.value-card-light p,
.value-card-light .value-number {
  transition: color 0.25s ease;
}

.value-card-light:hover {
  background: var(--blue);
  color: #fff;
}

.value-card-light:hover h3,
.value-card-light:hover .value-number {
  color: #fff;
}

.value-card-light:hover p {
  color: #f3f3f3;
}

.value-card-partnership::before {
  background-image: url("../img/assets/card-bg-1.png");
}

.value-card-insight::before {
  background-image: url("../img/assets/card-bg-2.png");
}

.value-card-performance::before {
  background-image: url("../img/assets/card-bg-3.png");
}

.value-number {
  color: #000;
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.2;
}

.works-section {
  padding: 110px 0 190px;
}

.works-button {
  display: flex;
  width: max-content;
  min-width: 273px;
  min-height: 61px;
  margin: 60px auto 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  gap: 10px;
}

.site-footer {
  height: 398px;
  background: var(--blue);
  overflow: hidden;
}

.site-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@keyframes heroFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes starPulse {
  0%,
  100% {
    scale: 1;
    opacity: 0.9;
  }

  50% {
    scale: 1.12;
    opacity: 1;
  }
}

.stage-penguin-main {
  animation: heroFloat 4.8s ease-in-out infinite;
}

.stage-star {
  animation: starPulse 2.8s ease-in-out infinite;
}

.stage-star-2 {
  animation-delay: 0.5s;
}

.stage-star-4 {
  animation-delay: 1s;
}

.service-pills-track span,
.works-button,
.value-card {
  will-change: transform;
}

.service-pills-track span,
.works-button {
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.service-pills-track span:hover,
.works-button:hover {
  transform: translateY(-3px);
}

.service-pills-track span:hover {
  background: var(--blue);
  color: #fff;
}

.works-button:hover {
  transform: translateY(-3px) scale(1.02);
}

body.can-reveal .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.can-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.can-reveal .value-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

body.can-reveal .value-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.text-reveal {
  --word-step: 36ms;
}

.text-reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.75em) rotateX(16deg);
  transform-origin: left bottom;
  filter: blur(8px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.62s ease;
  transition-delay: calc((var(--word-index) + var(--word-offset, 0)) * var(--word-step));
  will-change: opacity, transform, filter;
}

.text-reveal.text-visible .text-reveal-word {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
}

p.text-reveal .text-reveal-word {
  display: inline;
  transform: none;
}

.hero h1 .text-reveal-word {
  --word-step: 150ms;
  transform: translateY(0.35em) scale(0.96);
}

.hero h1 > span {
  --word-offset: 0;
}

.hero h1 > strong {
  --word-offset: 3;
}

.works-button.text-reveal {
  overflow: hidden;
}

.value-number .text-reveal-word,
.works-button .text-reveal-word {
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .text-reveal-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .section-inner {
    width: min(100% - 48px, var(--page-width));
    padding-left: 0;
    padding-right: 0;
  }

  .hero .hero-inner {
    width: 100%;
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.8vw, 4.8rem);
    line-height: 1.06;
    max-width: 100%;
  }

  .service-pills {
    gap: 14px;
    margin-top: 36px;
  }

  .service-pills-track span,
  .service-pills-track span:nth-child(2) {
    width: 100%;
    min-width: 0;
    margin-right: 0;
  }

  .service-pills-track span {
    text-align: center;
    white-space: nowrap;
    padding: 10px 12px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }

  .hero-stage {
    height: clamp(470px, 64vw, 560px);
    overflow: visible;
  }

  .hero-glow {
    top: clamp(104px, 14vw, 124px);
    height: clamp(300px, 43vw, 390px);
  }

  .stage-penguin-main {
    top: clamp(-108px, -10vw, -56px);
    width: clamp(280px, 34vw, 340px);
  }

  .stage-penguin-skate {
    left: 7%;
    top: clamp(178px, 25vw, 238px);
    width: clamp(98px, 15vw, 140px);
  }

  .stage-penguin-hawaiian {
    left: 19%;
    top: clamp(306px, 40vw, 354px);
    width: clamp(150px, 23vw, 210px);
  }

  .stage-penguin-boxing {
    right: 5%;
    top: clamp(260px, 36vw, 330px);
    width: clamp(108px, 18vw, 160px);
  }

  .about-copy{padding-bottom:0}

  .strategy-section{padding-top:120px;}

  .about-strip {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: clamp(76px, 10vw, 112px) 0 clamp(84px, 12vw, 130px);
  }

  .about-copy p:last-child,
  .section-heading p,
  .result-copy p,
  .value-card p {
    font-size: clamp(1.05rem, 1.9vw, 1.25rem);
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

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

  .section-heading h2 {
    font-size: clamp(2.4rem, 5.3vw, 3.5rem);
    line-height: 1.2;
  }

  .result-copy h3,
  .value-card h3 {
    font-size: clamp(1.65rem, 3vw, 2rem);
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 56px, var(--page-width));
  }

  .hero-inner {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 8vw, 6.8rem);
    line-height: 1.1;
  }

  .hero-stage {
    height: clamp(520px, 55vw, 600px);
    margin-top: 8px;
  }

  .hero-glow {
    top: clamp(86px, 9vw, 110px);
    height: clamp(360px, 38vw, 430px);
  }

  .stage-penguin-main {
    top: clamp(-100px, -8.5vw, -62px);
    width: clamp(300px, 29vw, 350px);
  }

  .stage-penguin-skate {
    left: 8%;
    top: clamp(154px, 17vw, 212px);
    width: clamp(120px, 11.5vw, 152px);
  }

  .stage-penguin-hawaiian {
    left: 21%;
    top: clamp(262px, 28vw, 324px);
    width: clamp(178px, 16.5vw, 226px);
  }

  .stage-penguin-boxing {
    right: 8.5%;
    top: clamp(250px, 26vw, 312px);
    width: clamp(128px, 12.5vw, 168px);
  }

  .stage-shadow {
    bottom: clamp(34px, 4.8vw, 62px);
    width: clamp(300px, 33vw, 372px);
  }

  .service-pills {
    gap: 14px;
    margin-top: 34px;
  }

  .service-pills-track span {
    padding: 10px 22px;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  }
}

@media (min-width: 1181px) and (max-width: 1400px) {
  .hero h1 {
    font-size: clamp(5.6rem, 7.2vw, 6.9rem);
    line-height: 1.1;
  }

  .hero-inner {
    padding-top: 104px;
  }

  .hero-stage {
    height: clamp(500px, 44vw, 560px);
  }

  .stage-penguin-main {
    top: clamp(-76px, -5.5vw, -48px);
    width: clamp(300px, 24vw, 336px);
  }

  .stage-penguin-skate {
    left: 9%;
    top: clamp(142px, 13.5vw, 186px);
    width: clamp(136px, 11vw, 164px);
  }

  .stage-penguin-hawaiian {
    left: 24%;
    top: clamp(252px, 21vw, 302px);
    width: clamp(188px, 14vw, 228px);
  }

  .stage-penguin-boxing {
    right: 10%;
    top: clamp(244px, 20vw, 296px);
    width: clamp(140px, 11.5vw, 174px);
  }

  .service-pills {
    gap: 16px;
    margin-top: 38px;
  }

  .service-pills-track span {
    padding: 10px 24px;
    font-size: clamp(1.15rem, 1.3vw, 1.35rem);
  }
}

@media (min-width: 1401px) and (max-width: 1500px) {
  .hero h1 {
    font-size: clamp(6.8rem, 9.2vw, 8.25rem);
    line-height: 1.12;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .hero-stage {
    height: 530px;
  }

  .stage-penguin-main {
    top: -84px;
    width: 340px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .site-header img {
    display: none;
  }

  .site-header::before {
    content: "SKYVENTURES";
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 850;
    line-height: 1;
  }

  .site-header::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 26px;
    height: 20px;
    transform: translateY(-50%);
    background:
      linear-gradient(#fff, #fff) 0 0 / 100% 3px no-repeat,
      linear-gradient(#fff, #fff) 0 50% / 100% 3px no-repeat,
      linear-gradient(#fff, #fff) 0 100% / 100% 3px no-repeat;
  }

  .mobile-break {
    display: block;
  }

  .section-inner {
    width: calc(100% - 48px);
  }

  .hero .hero-inner {
    width: 100%;
    padding: 74px 24px 0;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 6.2vw, 3.2rem);
    line-height: 1.08;
    overflow: visible;
  }

  .hero h1 strong {
    transform: none;
    transform-origin: center;
  }

  .hero .service-pills {
    width: calc(100% + 48px);
    max-width: none;
    margin-top: 28px;
    margin-left: -24px;
    margin-right: -24px;
    overflow: hidden;
    display: block;
  }

  .service-pills-track {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: mobilePillsLoop 14s linear infinite;
  }

  .service-pills-track .pill-clone {
    display: flex;
  }

  .service-pills-track span {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: max-content;
    padding: 8px 16px;
    font-size: clamp(0.78rem, 2.9vw, 0.95rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  .service-pills-track span:nth-child(2),
  .service-pills-track span:nth-child(6) {
    margin-right: 0;
  }

  .hero-stage {
    height: clamp(430px, 112vw, 500px);
    margin-top: 12px;
  }

  .hero-glow {
    top: clamp(96px, 23vw, 112px);
    height: clamp(250px, 64vw, 300px);
    left: 16px;
    right: 16px;
    width: auto;
  }

  .stage-penguin-main {
    top: clamp(-22px, -5vw, -8px);
    width: clamp(210px, 58vw, 255px);
  }

  .stage-penguin-skate {
    left: 9%;
    top: clamp(176px, 46vw, 196px);
    width: clamp(80px, 23vw, 104px);
  }

  .stage-penguin-hawaiian {
    left: 18%;
    top: clamp(302px, 76vw, 350px);
    width: clamp(126px, 35vw, 160px);
  }

  .stage-penguin-boxing {
    right: 6%;
    top: clamp(250px, 64vw, 286px);
    width: clamp(92px, 28vw, 118px);
  }

  .section-heading h2 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .about-strip,
  .about-copy,
  .about-copy p,
  .section-heading,
  .section-heading h2,
  .section-heading p,
  .result-copy,
  .result-copy h3,
  .result-copy p,
  .value-card h3,
  .value-card p {
    max-width: 100%;
    min-width: 0;
  }

  .about-copy p:last-child,
  .section-heading p,
  .result-copy p,
  .value-card p {
    width: 100%;
    white-space: normal !important;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 1.62;
  }

  .about-copy p:last-child b,
  .section-heading p b,
  .result-copy p b,
  .value-card p b {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .text-reveal-word {
    max-width: 100%;
  }

  .works-section .section-heading,
  .works-section .section-heading h2,
  .works-section .section-heading p {
    text-align: center;
  }

  .works-button {
    min-width: 220px;
    min-height: 52px;
    font-size: 1.25rem;
  }

  .result-panel {
    background:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 44%, rgba(255, 255, 255, 0) 100%),
      url("../img/assets/works-bg.png") center bottom / cover no-repeat;
  }
}

@keyframes mobilePillsLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero .hero-inner {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1 {
    overflow: visible;
  }

  .hero h1 strong {
    transform-origin: center;
  }

  .service-pills {
    gap: 10px;
    margin-top: 24px;
  }

  .service-pills-track span {
    max-width: 100%;
    padding: 8px 4px;
  }

  .hero-stage {
    height: 430px;
  }

  .hero-glow {
    top: 98px;
    height: 250px;
  }

  .stage-penguin-main {
    top: -4px;
    width: 210px;
  }

  .stage-penguin-skate {
    left: 6%;
    top: 180px;
    width: 80px;
  }

  .stage-penguin-hawaiian {
    left: 14%;
    top: 300px;
    width: 128px;
  }

  .stage-penguin-boxing {
    right: 4%;
    top: 260px;
    width: 84px;
  }

  .brand-line {
    font-size: 1.35rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.24;
  }

  .section-heading p {
    font-size: 1rem;
    text-align: center;
  }

  .result-panel,
  .value-card {
    padding: 32px;
  }

  .result-panel {
    min-height: 500px;
    background:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0) 100%),
      url("../img/assets/works-bg.png") center bottom / contain no-repeat;
  }

  .works-button {
    width: min(100%, 220px);
    min-width: 0;
    min-height: 48px;
    font-size: 1.05rem;
    margin-top: 40px;
  }

  .result-copy h3,
  .value-card h3 {
    font-size: 1.5rem;
  }

  .works-section .section-heading h2 {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.28;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .works-section .section-heading p {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .hero h1 strong {
    font-size: 2.7rem;
    transform: none;
  }

  .service-pills-track span {
    font-size: 0.72rem;
  }

  .works-section .section-heading h2 {
    font-size: 2rem;
  }

  .works-button {
    min-height: 44px;
    font-size: 0.98rem;
  }
}
