* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #020817;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}


.fullpage {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 100px 6vw 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* BACKGROUND */


.bg01 {
  background: url("./img/bg01-pc.png") center center / cover no-repeat;
}

.bg02 {
  background: url("./img/bg02.png") center center / cover no-repeat;
}

.bg03 {
  background: url("./img/bg03.png") center center / cover no-repeat;
}

.bg04 {
  background: url("./img/bg04.png") center center / cover no-repeat;
}

.bg05 {
  background: url("./img/bg05.png") center center / cover no-repeat;
}

.bg06 {
  background: url("./img/bg06.png") center center / cover no-repeat;
}

.bg07 {
  background: url("./img/bg07.png") center center / cover no-repeat;
}

.bg08 {
  background: url("./img/bg08.png") center center / cover no-repeat;
}

.bg09 {
  background: url("./img/bg09.png") center center / cover no-repeat;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - 17px);
  height: 64px;
  z-index: 1000;
  background: rgba(4, 13, 33, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.85;
  transition: 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #35d7ff;
  transition: 0.35s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #35d7ff;
  opacity: 1;
  text-shadow: 0 0 14px rgba(0, 170, 255, 0.8);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

/* TEXT */
h1,
h2,
h3,
p,
li,
small {
  text-shadow: 0 0 14px rgba(0, 120, 255, 0.55);
}

h1 {
  font-size: clamp(30px, 4vw, 56px);
  text-align: center;
}

h2 {
  font-size: clamp(24px, 3vw, 44px);
}

h3 {
  font-size: 17px;
  line-height: 1.4;
}

p,
li {
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER */
.hover-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hover-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -80%;
  width: 55%;
  height: 300%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  transition: 0.8s ease;
  pointer-events: none;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 20px rgba(0, 160, 255, 0.6),
    0 0 60px rgba(0, 90, 255, 0.4);
}

.hover-card:hover::before {
  left: 135%;
}

/* PAGE 1 */
.home-title {
  margin-top: auto;
  margin-bottom: 7vh;
  text-align: center;
}

.home-title h2 {
  color: #35d7ff;
}

.page-title {
  text-align: center;
  margin-bottom: 38px;
}

/* PAGE 2 */
.problem-grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  min-height: 180px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #000;
  border: 1px solid rgba(160, 210, 255, 0.35);
  overflow: hidden;
}

.problem-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.problem-card h3 {
  padding-left: 22px;
  font-size: 20px;
  line-height: 1.35;
}

/* PAGE 3 */
.three-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 420px));
  justify-content: center;
  gap: 24px;
  margin-bottom: 55px;
}

.three-text-grid article {
  padding: 28px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.phone-flow {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 50px;
  align-items: end;
  text-align: center;
}

.phone-img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  display: block;
  margin-top: 18px;
}

.main-phone {
  height: 450px;
}

/* PAGE 4 */
.advantage-layout {
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 40px;
  align-items: center;
}

.circle-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.advantage-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.plain-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plain-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
  z-index: 1;
  pointer-events: none;
}

.plain-image-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -80%;
  width: 55%;
  height: 300%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  transition: 0.8s ease;
  z-index: 5;
  pointer-events: none;
}

.plain-image-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 20px rgba(0, 160, 255, 0.6),
    0 0 60px rgba(0, 90, 255, 0.4);
}

.plain-image-card:hover::before {
  left: 135%;
}

.card-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.card-image {
  width: 154px;
  height: 202px;
  object-fit: cover;
  display: block;
}

.plain-image-card h3 {
  position: relative;
  z-index: 3;
  padding: 18px 14px;
  text-align: center;
  font-size: 16px;
  line-height: 1.45;
}

.advantage-right>p,
.advantage-right>h2 {
  text-align: center;
  margin-top: 35px;
}

.advantage-right>p {
  font-size: 20px;
  line-height: 1.4;
}

.advantage-right>h2 {
  font-size: 35px;
}

/* PAGE 5 */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.feature-card {
  text-align: center;
}

.feature-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 55px;
  min-height: 42px;
}

.feature-head span,
.token-item span,
.token-bottom span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.feature-head h3 {
  font-size: 15px;
  white-space: nowrap;
}

.feature-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 360px;
  margin: 0 auto 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-img::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -80%;
  width: 55%;
  height: 300%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  transition: 0.8s ease;
  z-index: 5;
  pointer-events: none;
}

.feature-img:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 20px rgba(0, 160, 255, 0.6),
    0 0 60px rgba(0, 90, 255, 0.4);
}

.feature-img:hover::before {
  left: 135%;
}

.feature-image {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-img.card-type {
  height: 360px;
}

.feature-img.card-type .feature-image {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.55;
}

/* PAGE 6 */
#utility h2,
#advisor h2 {
  text-align: center;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 320px));
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
}

.utility-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.utility-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -80%;
  width: 55%;
  height: 300%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  transition: 0.8s ease;
  z-index: 5;
  pointer-events: none;
}

.utility-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 20px rgba(0, 160, 255, 0.6),
    0 0 60px rgba(0, 90, 255, 0.4);
}

.utility-card:hover::before {
  left: 135%;
}

.utility-img {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.utility-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.utility-card h3 {
  position: relative;
  z-index: 3;
  font-size: 18px;
  line-height: 1.45;
}

/* PAGE 7 */
#tokenomics * {
  transition: none !important;
  transform: none !important;
}

.tokenomics-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 34px;
  align-items: center;
}

.token-chart-box {
  padding: 20px;
}

.token-chart-box h2 {
  text-align: center;
  margin-bottom: 34px;
}

.token-chart {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.token-chart-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
}

.supply-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-bottom: 40px;
}

.token-item {
  display: grid;
  grid-template-columns: 48px 170px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 30px;
}

.token-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 60px;
}

.token-bottom div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

/* PAGE 8 */

.pc-only {
  display: block;
}

.mobile-only {
  display: none;
}

.advisor-img {
  position: relative;
  overflow: hidden;

  width: 100%;
  margin: 40px auto 0;
  padding: 30px;

  border-radius: 28px;

  background: rgba(0, 0, 0, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(0, 120, 255, 0.12);

  /* 움직임 제거 */
  transition: box-shadow 0.35s ease;
}



.advisor-img,
.advisor-img:hover {
  transform: none !important;
}

.hover-card:hover .advisor-img,
.hover-card .advisor-img:hover {
  transform: none !important;
}

/* 빛 지나가는 효과 */
.advisor-img::before {
  content: "";

  position: absolute;
  top: -120%;
  left: -80%;

  width: 55%;
  height: 300%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);

  transform: rotate(25deg);

  transition: 0.8s ease;

  z-index: 5;
  pointer-events: none;
}

/* hover 시 glow만 */
.advisor-img:hover {
  box-shadow:
    0 0 20px rgba(0, 160, 255, 0.6),
    0 0 60px rgba(0, 90, 255, 0.4);
}

/* 빛 스윽 */
.advisor-img:hover::before {
  left: 135%;
}

.advisor-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;

  position: relative;
  z-index: 2;
}



/* PAGE 9 */
/* =========================
   9 PAGE - CLEAN FIX
========================= */
.contact-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

/* 공통 박스 */
.disclaimer-box,
.contact-box {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 34px;
  align-items: center;

  min-height: 300px;
  padding: 38px 46px;

  border-radius: 24px;
  background: linear-gradient(100deg,
      #000 0%,
      rgba(14, 14, 14, 0.86) 58%,
      rgba(24, 38, 58, 0.78) 100%);

  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* 박스 빛반사 */
.disclaimer-box::before,
.contact-box::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -80%;
  width: 55%;
  height: 300%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: rotate(25deg);
  transition: 0.8s ease;
  z-index: 6;
  pointer-events: none;
}

.disclaimer-box:hover,
.contact-box:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 20px rgba(0, 160, 255, 0.6),
    0 0 60px rgba(0, 90, 255, 0.4);
}

.disclaimer-box:hover::before,
.contact-box:hover::before {
  left: 135%;
}

/* 이미지 */
.contact-img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 220px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
}

/* 텍스트 */
.disclaimer-text,
.contact-info,
.disclaimer-title,
.contact-title {
  position: relative;
  z-index: 2;
}

/* Disclaimer 본문 */
.disclaimer-text p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 8px;
}

/* PC 제목 */
.disclaimer-title,
.contact-title {
  position: static;

  justify-self: end;
  align-self: start;

  font-size: 42px;
  font-weight: 700;
  line-height: 1;

  margin: 0;
  color: #fff;

  text-align: right;
  white-space: nowrap;
}

/* Contact 본문 */
.contact-info h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 22px;
  max-width: 620px;
}

.contact-table a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-table a:hover {
  color: #35d7ff;
  text-shadow: 0 0 10px rgba(53, 215, 255, 0.7);
}

.contact-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;

  min-height: 44px;

  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-table strong {
  padding-left: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-table span {
  padding-left: 24px;
}

.contact-info small {
  display: block;
  margin-top: 8px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {


  html,
  body {
    height: auto !important;
    overflow-y: auto !important;
  }

  .fullpage {
    height: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
  }

  .page {
    min-height: auto !important;
    height: auto !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }
}


.disclaimer-box,
.contact-box {
  grid-template-columns: 180px 1fr 180px;
  padding: 30px;
}

.disclaimer-title,
.contact-title {
  position: static;
  justify-self: end;
  align-self: start;
  text-align: right;
  font-size: 34px;
  margin: 0;
}

.contact-info h2 {
  font-size: 30px;
}



/* =========================
   MOBILE
========================= */



@media (max-width: 1100px) {

  html,
  body {
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .fullpage {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
  }

  .page,
  section {
    height: auto !important;
    min-height: auto !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  .bg01.page {
    min-height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 90px !important;
    padding-bottom: 40px !important;
    background-image: url("./img/bg01-mobile.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .home-title {
    position: relative;
    z-index: 5;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    text-align: center;
  }

  .home-title h1 {
    font-size: clamp(26px, 7vw, 48px);
    line-height: 1.15;
  }

  .home-title h2 {
    font-size: clamp(16px, 5vw, 28px);
    line-height: 1.35;
  }

  .bg08.page {
    background: #000 !important;
    padding-top: 110px !important;
    padding-bottom: 40px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bg08 h2 {
    position: relative;
    z-index: 20;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
  }

  .advisor-img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .advisor-image {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain !important;
  }



  .contact-wrap {
    gap: 22px;
  }

  .disclaimer-box,
  .contact-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 24px 20px 30px;
    gap: 18px;
  }

  .disclaimer-title,
  .contact-title {
    order: -1;
    align-self: flex-start;
    font-size: 34px;
    line-height: 1;
    text-align: left;
    margin: 0 0 8px;
  }

  .contact-img {
    order: 0;
    height: 190px;
  }

  .disclaimer-text,
  .contact-info {
    order: 1;
    padding-right: 0;
  }

  .contact-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .contact-info h2 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .contact-table div {
    grid-template-columns: 1fr;
  }

  .contact-table strong,
  .contact-table span {
    padding: 9px 12px;
    border-right: none;
    font-size: 13px;
    word-break: break-all;
  }

  .disclaimer-box:hover,
  .contact-box:hover {
    transform: none;
    box-shadow: none;
  }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 360px) {
  .contact-img {
    height: 160px;
  }

  .disclaimer-title,
  .contact-title {
    font-size: 28px;
  }

  .contact-info h2 {
    font-size: 20px;
  }
}



/* TABLET */
@media (max-width: 1100px) {

  .page {
    height: auto;
    min-height: 100vh;
    padding: 90px 32px 70px;
    justify-content: flex-start;
  }

  /* 8페이지만 가운데 */
  .bg08.page {
    justify-content: center !important;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 200px;
  }

  .advisor-img::before {
    display: none !important;
    content: none !important;
  }

  .advisor-img,
  .advisor-img:hover {
    box-shadow: none !important;
    transform: none !important;
  }

  .bg08 h2 {

    text-align: center;
  }

  .advisor-img {
    margin: 0 auto !important;
    width: 92%;
  }

  h1 {
    font-size: clamp(28px, 5vw, 42px);
  }

  h2 {
    font-size: clamp(24px, 4vw, 36px);
  }

  h3 {
    font-size: 15px;
  }

  p,
  li {
    font-size: 14px;
  }

  .nav-menu {
    justify-content: flex-start;
    gap: 30px;
    padding: 0 28px;
  }

  .problem-grid,
  .three-text-grid,
  .feature-row,
  .utility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-flow,
  .advantage-layout,
  .tokenomics-layout {
    grid-template-columns: 1fr;
  }

  .phone-flow {
    max-width: 760px;
    gap: 42px;
    padding: 0 40px;
  }

  .phone-img,
  .main-phone {
    height: 300px;
  }

  .advantage-layout {
    max-width: 900px;
    padding: 0 32px;
  }

  .circle-img {
    height: 420px;
    object-fit: contain;
  }

  .advantage-card-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-img,
  .feature-img.card-type {
    height: 320px;
  }

  .token-chart-image {
    max-width: 420px;
  }

  .token-item {
    grid-template-columns: 44px 150px 1fr;
  }

  .disclaimer-box,
  .contact-box {
    grid-template-columns: 180px 1fr;
    padding: 30px;
  }

  .disclaimer-text h2,
  .contact-title {
    position: static;
    margin-bottom: 16px;
    text-align: left;
  }
}

/* MOBILE */
@media (max-width: 768px) {


  .navbar {
    width: 100%;
    height: 58px;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 3000;
    width: 32px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
  }

  .navbar.open .menu-toggle span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .navbar.open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.open .menu-toggle span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 58px;
    right: 0;

    width: 78%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 0;
    padding: 22px 24px;

    background: rgba(4, 13, 33, 0.96);
    backdrop-filter: blur(16px);

    transform: translateX(100%);
    transition: transform 0.3s ease;

    z-index: 2000;
    pointer-events: none;
  }

  .navbar.open .nav-menu {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page {
    padding: 78px 18px 48px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 14px;
  }

  p,
  li {
    font-size: 13px;
  }

  .problem-grid,
  .problem-card,
  .three-text-grid,
  .phone-flow,
  .advantage-layout,
  .advantage-card-row,
  .feature-row,
  .utility-grid,
  .tokenomics-layout,
  .token-bottom,
  .disclaimer-box,
  .contact-box {
    grid-template-columns: 1fr;
  }



  .problem-card {
    padding: 14px;
    gap: 12px;
  }

  .problem-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
  }

  .problem-card h3 {
    padding-left: 0;
    text-align: center;
    font-size: 18px;
  }

  .phone-img,
  .main-phone {
    height: 240px;
  }

  .circle-img {
    height: 280px;
    object-fit: contain;
  }

  .card-image {
    width: 130px;
    height: 170px;
  }

  .advantage-right>p {
    font-size: 15px;
    line-height: 1.6;
  }

  .feature-img,
  .feature-img.card-type {
    height: 240px;
    margin: 0 auto 18px;
  }

  .feature-img.card-type .feature-image {
    width: 100%;
    max-width: 300px;
    height: 100%;
    object-fit: contain;
  }

  .utility-img {
    height: 180px;
  }

  .token-chart-image {
    max-width: 280px;
  }

  .supply-row {
    grid-template-columns: 1fr;
  }

  .token-item {
    grid-template-columns: 36px 1fr;
  }

  .token-item ul {
    grid-column: 1 / -1;
    padding-left: 18px;
  }

  .advisor-img {
    margin: 110px auto 0 !important;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-title {
    position: static;
    order: -1;
    font-size: 34px;
    text-align: left;
    margin-bottom: 8px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-img {
    height: 220px;
    padding: 14px;
  }

  .contact-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .contact-table div {
    grid-template-columns: 1fr;
  }

  .contact-table strong,
  .contact-table span {
    padding: 9px 12px;
    border-right: none;
    font-size: 13px;
    word-break: break-all;
  }

  .hover-card:hover,
  .plain-image-card:hover,
  .feature-img:hover,
  .utility-card:hover,
  .advisor-img:hover,
  .disclaimer-box:hover,
  .contact-box:hover {
    transform: none;
    box-shadow: none;
  }
}

/* SMALL MOBILE */
@media (max-width: 360px) {
  .navbar {
    height: 54px;
  }

  .menu-toggle {
    top: 13px;
    right: 16px;
    width: 28px;
    height: 26px;
  }

  .nav-menu {
    top: 54px;
    width: 86%;
    padding: 20px 18px;
  }

  .nav-menu a {
    font-size: 13px;
    padding: 12px 0;
  }

  .page {
    padding: 72px 14px 38px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 13px;
  }

  p,
  li,
  small {
    font-size: 12px;
  }

  .phone-img,
  .main-phone {
    height: 190px;
  }

  .circle-img {
    height: 230px;
  }

  .card-image {
    width: 118px;
    height: 150px;
  }

  .feature-img,
  .feature-img.card-type {
    height: 180px;
  }

  .feature-img.card-type .feature-image {
    max-width: 260px;
  }

  .utility-img {
    height: 145px;
  }

  .token-chart-image {
    max-width: 220px;
  }

  .advisor-img {
    width: 96%;
    padding: 14px;
  }

  .contact-img {
    height: 180px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-info h2 {
    font-size: 20px;
  }
}

/* FINAL FIX - ADVISOR IMAGE SWITCH */

/* PC */
@media (min-width: 1101px) {
  #advisor .pc-only {
    display: block !important;
  }

  #advisor .mobile-only {
    display: none !important;
  }

  #advisor .advisor-img {
    width: 80% !important;
    max-width: 80% !important;
    margin: 40px auto 0 !important;
    padding: 30px !important;
    background: rgba(0, 0, 0, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 28px !important;
    box-shadow:
      0 0 20px rgba(0, 0, 0, 0.45),
      0 0 50px rgba(0, 120, 255, 0.12) !important;
  }
}

/* MOBILE / TABLET */
@media (max-width: 1100px) {
  #advisor .pc-only {
    display: none !important;
  }

  #advisor .mobile-only {
    display: block !important;
  }

  #advisor .advisor-img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}