/* Smart Meta Design Tokens */
:root {
  /* Colors */
  --color-primary-blue: #7998fe;
  --color-primary-dark-blue: #4c76fe;
  --color-primary-accent: #1f54fe;
  --color-bg-dark: #17171e;
  --color-bg-surface: #23232e;
  --color-text-primary: #ffffff;
  --color-text-secondary: #f6f7f8;
  --color-text-muted: #dddddd;
  --color-text-accent: #a5bbff;
  --color-text-gray: #bbbbbb;
  --color-text-dark: #444444;

  /* Gradients */
  --gradient-primary: linear-gradient(137deg, #7998fe 20%, #1f54fe 74%);
  --gradient-surface: linear-gradient(
    180deg,
    rgba(165, 187, 255, 0.5) 0%,
    rgba(23, 23, 30, 0) 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    rgba(23, 23, 30, 0) 60%,
    #1f54fe 100%
  );
  --gradient-radial: radial-gradient(
    circle at 5% 2%,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(23, 23, 30, 0) 100%
  );

  /* Typography */
  --font-family-primary: "Pretendard", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-size-hero: 72px;
  --font-size-h1: 56px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-body: 18px;
  --font-size-small: 16px;
  --font-size-caption: 14px;
  --font-weight-light: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.5;
  --line-height-loose: 1.67;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 90px;
  --space-5xl: 96px;
  --space-6xl: 128px;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-2xl: 24px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-glow: 0px 0px 24px 0px rgba(255, 255, 255, 0.25);
  --shadow-inner: inset 0px 0px 44px 0px rgba(31, 84, 254, 1);
  --shadow-card: 0px 0px 20px 0px rgba(121, 152, 254, 1);
  --shadow-soft: 0px 0px 8px 0px rgba(120, 130, 255, 1);

  /* Layout */
  --container-max-width: 1280px;
  --container-padding: 20px;
  --section-padding-y: 200px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  overflow-x: hidden;
}
body.en {
  word-break: keep-all;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

.section {
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

/* Header */

.mobile_area{
    display: flex;
    align-items: center;
    gap: 50px;
}



.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-text-primary);
  z-index: 1000;
  height: 76px;
  padding: 0 35px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  width: 100%;
  min-width: 0;
}

.logo img {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 56px;
  max-width: 910px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.en .nav {
  max-width: none;
}
.nav-link {
  color: var(--color-bg-dark);
  text-decoration: none;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.lang-toggle {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-bg-dark);
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  padding: var(--space-sm) 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.lang-btn.active {
  opacity: 1;
  border-bottom: 1px solid var(--color-bg-dark);
}

/* Hero Section */
.hero {
  height: 972px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url(../img/main.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero .container {
  max-width: 1340px;
}
.en .hero .container {
  max-width: 1500px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark);
  display: none;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/main.png);
  background-size: contain;
}

.hero-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(255, 255, 255, 0.5),
      transparent
    ),
    radial-gradient(2px 2px at 160px 30px, #fff, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  /* animation: twinkle 4s ease-in-out infinite alternate; */
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 1341px;
}
.en .hero-content {
  width: 100%;
  max-width: none;
}
.hero-title {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
  color: var(--color-text-secondary);
  white-space: nowrap;
}
.en .hero-title {
  font-size: 55px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.hero-title > span {
}
.hero-title > span:after {
  content: "-";
  margin: 0 10px;
}

.hero-subtitle {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-4xl);
  color: var(--color-text-secondary);
}
.en .hero-subtitle {
  font-size: 20px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-title {
  font-size: 56px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: 24px;
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-normal);
  color: var(--color-text-muted);
}

.subsection-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

/* Features Grid */
.intro {
  background: var(--color-bg-dark) !important;
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  visibility: visible !important;
  padding-bottom: 60px;
}

.features-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: var(--space-lg) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Problems & Solutions */
.problems-solutions {
  background: var(--color-bg-dark);
}
.problems-solutions:before {
  content: "";
  width: 600px;
  height: 656px;
  position: absolute;
  background: #1c3ca74f;
  filter: blur(45px);
  border-radius: 100%;
  right: -150px;
  top: 345px;
  z-index: 0;
}
.problems-solutions:after {
  content: "";
  width: 280px;
  height: 280px;
  position: absolute;
  background: #1c3ca74f;
  filter: blur(45px);
  border-radius: 100%;
  right: 40%;
  border: 0;
  z-index: 0;
  margin: 0;
  bottom: 10%;
}
.problems-solutions .section-header {
  margin-bottom: 115px;
}
.problems-solutions .circle {
  width: 825px;
  height: 885px;
  border-radius: 50%;
  background: conic-gradient(
    from 199deg,
    /* 시작 각도 */ #17171e 143deg,
    /* 선명 구간 */ rgb(95 95 95) 220deg,
    /* 7시 방향을 희미하게 */ #17171e 360deg
  );
  mask: radial-gradient(
    farthest-side,
    #00000000 calc(100% - 2px),
    #000000 calc(100% - 3px)
  );
  position: absolute;
  top: 50%;
  left: -470px;
  transform: translateY(-50%);
}

.problems-solutions-grid {
  display: flex;
  width: 1280px;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
}

.problems,
.solutions {
  text-align: center;
  position: relative;
}
.solutions {
  margin-top: 75px;
  width: 100%;
  flex: 1 0 585px;
  display: flex;
  flex-flow: column;
  align-items: end;
  max-width: 585px;
  width: 100%;
}

.problems {
  display: inline-block;
  padding-right: 145px;
  background-image: url(../img/arrow_l.png);
  background-position: 100% center;
  background-repeat: no-repeat;
  background-size: 310px;
}
.problems .circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    from -90deg,
    /* 시작 각도 */ white 200deg,
    /* 선명 구간 */ rgba(255, 255, 255, 0.4) 220deg,
    /* 7시 방향을 희미하게 */ white 360deg
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    black calc(100% - 3px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    black calc(100% - 3px)
  );
}
.problems .subsection-title {
  position: absolute;
  top: 48%;
  margin: 0;
  padding: 0;
}
.problem-list,
.solution-list {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-4xl);
}
.solution-list {
  margin: 0;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
.solution-list .solution-text {
  width: 290px;
  height: 290px;
  border: 1px solid #ddd;
  box-shadow: inset 0 0 20px 13px #1c3ca7;
  background: #17171e;
  text-shadow: 0px 0px 1px #fff;
}
.solution-list .stagger-item {
  width: 50%;
}
.problem-list {
  display: inline-block;
  padding-right: 240px;
  box-sizing: border-box;
  position: relative;
  margin: 0;
}
.problem-item,
.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.problem-icon,
.solution-icon {
  display: none;
}

.solution-icon {
  background: var(--gradient-primary);
  border: 1px solid var(--color-text-primary);
  box-shadow: var(--shadow-inner);
}

.problem-text,
.solution-text {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  text-align: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  border: 1px solid #fff;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.en .problem-text,
.en .solution-text {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 15px;
}
.solutions .reveal {
  margin-bottom: 60px;
  width: 100%;
  text-align: center;
}
#architecture {
}
#architecture:before {
  content: "";
  width: 500px;
  height: 500px;
  position: absolute;
  background: #4c76fe4a;
  filter: blur(100px);
  border-radius: 100%;
  right: -120px;
  top: 55%;
  z-index: 0;
}
#architecture:after {
  content: "";
  width: 400px;
  height: 400px;
  position: absolute;
  background: #ffffff;
  filter: blur(250px);
  border-radius: 100%;
  z-index: 0;
  margin: 0;
  left: -130px;
  top: -145px;
}

.diagram_wrap {
  margin-bottom: 90px;
  overflow-x: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.diagram_wrap img {
  width: 100%;
  max-width: 1240px;
}
/* Tokenomics */
.tokenomics-chart-container {
  --rail-h: 30px;
  --rail-radius: 5px;
  --rail-border: rgba(255, 255, 255, 0.22);
  --divider: rgba(255, 255, 255, 0.22);
  --seg-gap: 5px;
  --grad-a: #c9d3ff;
  --grad-b: #8ea3ff;
  --grad-c: #2a55ff;
  --c-private: #b8c7ff;
  --c-public: #9db2ff;
  --c-eco: #7696ff;
  --c-staking: #5e82ff;
  --c-team: #436bff;
  --c-treasury: #2f57ff;
  display: grid;
  gap: 24px;
}

/* Rail */
.tokenomics-chart-container .tc-rail {
  position: relative;
  height: var(--rail-h);
  width: min(1018px, 92vw);
  border-radius: var(--rail-radius);
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--grad-a) 0%,
    var(--grad-b) 50%,
    var(--grad-c) 100%
  );
  box-shadow: 0 0 0 1px var(--rail-border) inset,
    0 8px 24px rgba(42, 85, 255, 0.15);
}

/* Gaps between segments (masking with background color) */
.tokenomics-chart-container .gap {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--seg-gap);
  background: #080c16;
  z-index: 2;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* Hit areas for hover/tooltip */
.tokenomics-chart-container .tc-hit {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 3;
  border-radius: 0px;
  pointer-events: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tokenomics-chart-container .tc-hit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.04)
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 0;
}
.tokenomics-chart-container .tc-hit:hover {
  transform: scaleY(1.06);
  box-shadow: 0 10px 24px rgba(42, 85, 255, 0.25);
}
.tokenomics-chart-container .tc-hit:hover::before {
  opacity: 1;
}

/* Tooltip */
.tokenomics-chart-container .tc-hit::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translate(-50%, -100%);
  background: #0b1224;
  color: #fff;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 6px 18px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.tokenomics-chart-container .tc-hit:hover::after {
  opacity: 1;
  transform: translate(-50%, -110%);
}

/* Legend */
.tokenomics-chart-container .tc-legend {
  display: flex;
  gap: 70px;
  width: min(1018px, 92vw);
}
.tokenomics-chart-container .tc-legend .item {
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 10px;
  align-items: start;
}
.tokenomics-chart-container .tc-legend .chip {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--rail-border) inset;
}
.tokenomics-chart-container .tc-legend .label {
  line-height: 1.15;
  display: grid;
  gap: 4px;
  align-content: center;
  position: relative;
  bottom: 4px;
}
.tokenomics-chart-container .tc-legend .name {
  font-size: 20px;
  opacity: 0.95;
  letter-spacing: 0.2px;
  position: relative;
}
.tokenomics-chart-container .tc-legend .pct {
  font-size: 13px;
  opacity: 0.9;
}

.tokenomics-chart-container .chip.private {
  background: var(--c-private);
}
.tokenomics-chart-container .chip.public {
  background: var(--c-public);
}
.tokenomics-chart-container .chip.eco {
  background: var(--c-eco);
}
.tokenomics-chart-container .chip.staking {
  background: var(--c-staking);
}
.tokenomics-chart-container .chip.team {
  background: var(--c-team);
}
.tokenomics-chart-container .chip.treasury {
  background: var(--c-treasury);
}

.tokenomics-content {
  display: flex;
  flex-flow: column;
  align-items: start;
  gap: 95px;
  align-items: center;
}

.tokenomics-metrics {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.utility-list {
}
/* Panel with glossy gradient + vignette */
.utility-list .panel {
  width: min(1018px, 95vw);
  height: 156px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
}
/* top rim highlight */
.utility-list .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
}
/* bottom vignette for the panel */
.utility-list .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
/* Content grid */
.utility-list .content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 40px 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  column-gap: 56px;
}
.en .utility-list .content {
  padding: 45px 20px;
}
/* Bullet lists */
.utility-list .list {
  display: grid;
  grid-auto-rows: min-content;
  row-gap: 20px;
}
.utility-list .item {
  position: relative;
  padding-left: 22px;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.en .utility-list .item {
  font-size: 15px;
  white-space: normal;
}
.utility-list .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.metric-label {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-light);
  color: var(--color-text-accent);
}

.metric-value {
  font-size: 52px;
  font-weight: var(--font-weight-light);
  line-height: 1.23;
  color: var(--color-text-primary);
}
.en .metric-value {
  font-size: 45px;
}
.tokenomics-chart-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tokenomics-chart-container > h3 {
  /* white-space: nowrap; */
  flex: 1 0 auto;
}
.tokenomics-chart-container .graph {
  display: flex;
  flex-flow: column;
  gap: 50px;
}
.chart-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: var(--border-radius-sm);
}

.legend-color.ecosystem {
  background: linear-gradient(
    90deg,
    rgba(164, 185, 254, 1) 0%,
    rgba(113, 146, 254, 1) 100%
  );
}
.legend-color.staking {
  background: linear-gradient(
    90deg,
    rgba(110, 145, 254, 1) 0%,
    rgba(77, 120, 254, 1) 100%
  );
}
.legend-color.private {
  background: linear-gradient(
    90deg,
    rgba(210, 221, 254, 1) 0%,
    rgba(183, 200, 254, 1) 100%
  );
}
.legend-color.team {
  background: linear-gradient(
    90deg,
    rgba(183, 200, 255, 1) 1%,
    rgba(166, 187, 254, 1) 100%
  );
}
.legend-color.treasury {
  background: linear-gradient(
    90deg,
    rgba(75, 117, 254, 1) 0%,
    rgba(50, 98, 254, 1) 100%
  );
}
.legend-color.public {
  background: linear-gradient(
    90deg,
    rgba(48, 97, 254, 1) 1%,
    rgba(31, 84, 254, 1) 100%
  );
}

.legend-label {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  flex: 1;
}

.legend-percent {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-light);
  color: var(--color-text-primary);
}

.token-utility {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
}

.utility-title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.utility-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-image: url(../img/token_bg01.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.utility-list li {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  position: relative;
  padding-left: var(--space-lg);
}

.utility-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-text-primary);
  border-radius: 50%;
}

/* Architecture */
.architecture-diagram {
  position: relative;
  max-width: 1280px;
  margin: 0 auto var(--space-4xl);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: var(--space-2xl);
  height: 888px;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.user-journey {
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: var(--border-radius-2xl);
  padding: 48px 100px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(23, 23, 30, 0) 56%, #1f54fe75 100%);
}

.journey-title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2xl);
  color: var(--color-text-primary);
}

.journey-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
}
.journey-steps > div {
  position: relative;
}
.journey-steps > div:after {
  content: "";
  background-image: url(../img/arrow_s.png);
  width: 40px;
  height: 90px;
  position: absolute;
  top: 20%;
  right: -45px;
  background-size: contain;
  background-repeat: no-repeat;
}
.journey-steps > div:last-child:after {
  display: none;
}
.journey-steps > div:nth-child(4),
.journey-steps > div:nth-child(5) {
  gap: 8px;
  position: relative;
  top: 10px;
}
.en .journey-steps > div:nth-child(4),
.en .journey-steps > div:nth-child(5) {
  top: auto;
  gap: 20px;
}
.journey-steps > div:nth-child(4) > div,
.journey-steps > div:nth-child(5) > div {
}
.en .journey-steps > div:nth-child(5) > div {
  position: relative;
  top: 6px;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.step-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: start;
  justify-content: center;
}

.step-icon img {
  width: 58px;
  height: 58px;
}

.step-text {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-align: center;
}
.en .step-text {
  font-size: 16px;
}
/* Timeline */
.timeline {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: var(--space-4xl) 0;
}
.en .timeline {
}
.en #roadmap .container {
  max-width: 1577px;
}

.timeline-line {
  position: absolute;
  top: 60.7%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-text-accent);
  transform: translateY(-50%);
  width: 100vw;
  z-index: -1;
}

.timeline-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 66.6%;
  height: 1px;
  background: var(--color-text-primary);
  box-shadow: 0px 0px 8px 0px rgba(121, 152, 254, 1),
    0px 0px 8px 0px rgba(121, 152, 254, 1);
}

.timeline-phases {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.en .timeline-phases {
  justify-content: center;
}
.phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.phase:nth-child(odd) {
  top: 103px;
}
.en .phase:nth-child(odd) {
  top: 128px;
}
.phase:nth-child(odd) .phase-content {
  margin-top: 38px;
}
.phase:nth-child(even) {
  bottom: 105px;
  justify-content: end;
}
.en .phase:nth-child(even) {
  bottom: 119px;
}
.phase:nth-child(even) .phase-content {
  margin-bottom: 38px;
  order: -1;
  position: relative;
}

.phase-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(121, 152, 254, 0.5);
  position: relative;
  z-index: 2;
}

.phase-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-text-primary);
  border-radius: 50%;
}

.phase.featured .phase-dot {
  background: rgba(165, 187, 255, 0.5);
  box-shadow: 0px 0px 20px 0px rgba(121, 132, 255, 1);
}

.phase-content {
  max-width: 250px;
  text-align: center;
}
.en .phase-content {
  max-width: 225px;
}
.phase-quarter {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
  margin-bottom: var(--space-md);
}
.en .phase-quarter {
  font-size: 18px;
}
.phase.featured .phase-quarter {
  font-weight: var(--font-weight-extrabold);
}

.phase-milestones {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.phase-milestones li {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  white-space: nowrap;
}
.en .phase-milestones li {
  font-size: 16px;
  text-align: center;
  white-space: normal;
  line-height: 1.5;
}

.phase.featured .phase-milestones li {
  font-weight: var(--font-weight-bold);
}
.phase.featured .phase-milestones li strong {
  font-weight: normal;
}
/* Footer */
.footer {
  background: var(--color-bg-dark);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 35px 0 50px;
  align-items: start;
}
.footer-content .footer_logo {
  display: flex;
  align-items: start;
  justify-content: start;
}
.footer-content .footer_logo img {
  width: 100px;
}
.footer-content .footer_info {
}
.footer-contact {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
}

.contact-item {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-light);
  color: #e2e2e2;
  position: relative;
}

.contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--color-text-dark);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  justify-content: end;
  margin-top: 28px;
}

.social-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link img {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  text-align: right;
}

.copyright {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-light);
  color: var(--color-text-gray);
  padding: 20px 0;
  position: relative;
}
.copyright:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  left: -25%;
  background: rgb(255 255 255 / 20%);
  height: 1px;
}
#model {
}
#model .model_bottom_bg {
  background: linear-gradient(
    179deg,
    #17171e,
    hsl(226deg 100% 46.92% / 69%) 145%
  );
  width: 100%;
  height: 325px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#model .model_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

/* TOP: Flywheel */
#model .flywheel {
  position: relative;
  width: 100%;
  max-width: 825px;
  height: 530px;
  margin: 0 auto 120px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#model .flywheel .bg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  user-select: none;
  pointer-events: none;
  position: relative;
  max-width: 450px;
}
#model .flywheel:after {
  content: "순환 다이어그램";
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 28px;
  font-weight: bold;
  transform: translate(-50%, -50%);
}
.en #model .flywheel:after {
  content: "Cyclical Diagram";
}

#model .center-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(30, 70, 255, 0.55),
    0 0 2px rgba(255, 255, 255, 0.6);
}
#model .ring-labels {
  position: absolute;
  inset: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
  color: #eaf0ff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  pointer-events: none;
  max-width: 900px;
  transform: translateX(0%);
  width: 100%;
}
#model .ring-labels li {
  position: absolute;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}
.en #model .ring-labels li {
  width: 200px;
  line-height: 1.5;
}
#model .ring-labels .top {
  left: 50%;
  transform: translate(-50%, -20%);
  top: 6%;
}
#model .ring-labels .top-right {
  right: 12%;
  top: 20%;
}
.en #model .ring-labels .top-right {
  right: 7%;
}
#model .ring-labels .right {
  right: 0%;
  top: 47%;
}
#model .ring-labels .bottom-right {
  right: 12%;
  bottom: 19%;
}
.en #model .ring-labels .bottom-right {
  right: 10%;
}
#model .ring-labels .bottom {
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
}
#model .ring-labels .left-bottom {
  left: 12%;
  bottom: 23%;
}
.en #model .ring-labels .left-bottom {
  left: 5%;
  bottom: 13%;
}
#model .ring-labels .left-mid {
  left: 0%;
  top: 44%;
}
.en #model .ring-labels .left-mid {
  top: 47%;
}
#model .ring-labels .left-top {
  left: 12%;
  top: 23%;
}

.en #model .ring-labels .left-top {
  top: 19%;
  left: 8%;
}
/* BOTTOM */
#model .bottom-panels {
  position: relative;
  padding: 0;
  background: transparent;
  padding-bottom: 195px;
}
#model .panel-wrap {
  padding: 0; /* background:transparent; */
}
#model .panel-title {
  position: relative;
  display: inline-block;
  font-weight: 800;
  margin: 2px 0 10px;
  letter-spacing: -0.01em;
}
/* Left titles: line + dot towards center */
#model .panel-title.lined-left::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 12px);
  right: 44%;
  height: 1px;
  background: var(--line);
}
#model .panel-title.lined-left::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 44%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfe1ff;
  box-shadow: 0 0 0 3px rgba(180, 205, 255, 0.12);
}

#model .bullets {
  margin: 0 0 18px 0;
  padding: 0 0 0 0;
  list-style: none;
  color: #dde6ff;
}
#model .bullets li {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
}

#model .layers-stage {
  position: relative;
  min-height: 260px;
}
#model .layers-img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  user-select: none;
  pointer-events: none;
  filter: none;
  border: none;
  outline: none;
}

#model .supply-overlay {
  position: absolute;
  right: 2.8%;
  top: 48%;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: visible;
}

#model .supply-overlay.left {
  right: auto;
  left: 0;
  top: 0;
}
#model .supply-overlay.left.left02 {
  top: auto;
  bottom: 0;
}
#model .supply-overlay.right {
  text-align: right;
  top: 47%;
  transform: translateY(-50%);
}
#model .supply-overlay .right-title {
  position: relative;
  font-weight: 800;
  margin: 0 0 8px;
  color: #a5bbff;
  font-size: 20px;
}
#model .supply-overlay .right-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 485px;
  height: 1px;
  left: 93px;
  background: linear-gradient(137deg, #a5bbff 20%, #17171e 74%);
}
#model .supply-overlay.right .right-title::before {
  background: linear-gradient(270deg, #a5bbff 20%, #17171e 74%);
  left: 125px;
  width: 200px;
}
#model .supply-overlay .right-title::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a5bbff;
  transform: translateY(-50%);
  top: 50%;
  margin-left: 20px;
}
#model .supply-overlay.right .right-title::after {
  margin: 0;
  right: 95px;
}
.mobile-menu-btn {
  display: none;
}

.aside {
  position: fixed;
  width: 100%;
  height: calc(100vh - 55px);
  right: 0;
  top: 55px;
  background: #ffffffed;
  z-index: 100;
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.aside .aside_wrap {
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 25px;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.aside .aside_wrap a {
  font-size: 13px;
}
/* Responsive Design */

@media (max-width: 1600px) {
  .timeline {
  }
  .timeline-line {
    height: 1175px;
    width: 1px;
    left: 50%;
    top: 395px;
    transform: translateX(-50%);
  }
  .en .timeline-line {
    height: 1400px;
  }
  .timeline-line:after {
    width: 1px;
    height: 100%;
  }
  .phase-milestones li {
    white-space: normal;
  }
  .timeline-phases {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .timeline-phases .phase {
    flex-flow: row-reverse;
  }
  .timeline-phases .phase:nth-child(odd) {
    top: 0;
    left: -136px;
    align-items: start;
    gap: 50px;
  }
  .en .timeline-phases .phase:nth-child(odd) {
    left: -137px;
  }

  .timeline-phases .phase:nth-child(even) {
    right: -103px;
    align-items: start;
    top: -15px;
    gap: 50px;
  }
  .en .timeline-phases .phase:nth-child(even) {
    right: -137px;
  }
  .en .timeline-phases .phase:nth-child(even) .phase-quarter {
    text-align: left;
  }
  .en .phase-quarter {
    text-align: right;
  }
  .en .phase-milestones li {
    text-align: left;
  }
  .timeline-phases .phase:nth-child(3) {
    left: -150px;
  }
  .timeline-phases .phase:nth-child(4) {
    right: -133px;
  }
  .timeline-phases .phase:nth-child(5) {
    left: -123px;
  }
  .timeline-phases .phase:nth-child(6) {
    right: -119px;
  }
  .timeline-phases .phase:nth-child(7) {
    left: -106px;
  }
  .timeline-phases .phase-dot {
  }
  .phase:nth-child(odd) .phase-content {
    margin-top: 0;
    text-align: right;
  }
  .phase:nth-child(odd) .phase-content .phase-milestones > li {
    text-align: right;
  }
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 1400px) {
  .hero {
    background-size: cover;
    height: 640px;
    margin-top: 70px;
  }
  .hero-title {
    font-size: 55px;
  }
  .en .hero-title {
    font-size: 43px;
    padding: 0 20px;
    white-space: normal;
  }
  .hero .btn-primary,
  .hero .btn-secondary {
    font-size: 16px;
    min-width: auto;
    padding: 15px 50px;
    height: auto;
  }
  .features-grid .feature-title {
    font-size: 20px;
  }
  .features-grid {
    padding: 0 20px;
    box-sizing: border-box;
    display: flex !important;
    flex-wrap: wrap;
  }
  .features-grid .feature-card {
    width: 23% !important;
    word-break: auto-phrase;
    line-height: 1.5;
  }
  .user-journey {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 45px 20px;
  }
  .tokenomics-content {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .metric-value {
    font-size: 36px;
  }
  .tokenomics-chart-container {
    flex-flow: column;
    margin: 65px auto;
  }
  .tokenomics-content {
  }
  .utility-list .panel {
    width: 100%;
  }
  .token-utility {
    flex-flow: column;
    gap: 24px;
  }
  .utility-list {
    max-width: 80%;
    margin: 0 auto;
    width: 100%;
  }
  .utility-list .list {
    flex-wrap: wrap;
  }
  .utility-list .item {
    text-align: left;
    font-size: 20px;
    white-space: pre-wrap;
    word-break: auto-phrase;
  }
  .utility-list .content {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    width: 100%;
  }
  #model .bottom-panels {
    padding: 0 20px 195px;
    width: 88%;
    margin: 0 auto;
  }
  #model .layers-img {
    max-width: 390px;
  }
  #model .supply-overlay .right-title {
    font-size: 18px;
  }
  #model .bullets li {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .footer {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .nav {
    gap: 25px;
  }
  .nav a {
    font-size: 14px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .module-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .problems-solutions-grid {
    flex-flow: column;
    max-width: 1280px;
    width: 100%;
    padding-top: 22px;
    overflow: hidden;
  }
  .problems {
    padding: 0;
    position: relative;
    background-image: url(../img/big_arrow_down01.png);
    background-size: 135px;
    background-position: center 100%;
  }
  .problems .subsection-title {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
  }
  .problems-solutions .circle {
    width: 585px;
    height: 625px;
    left: 50%;
    top: 17%;
    transform: translate(-50%, -50%) rotate(110deg);
    background: conic-gradient(
      from 199deg,
      /* 시작 각도 */ #17171e 90deg,
      /* 선명 구간 */ rgb(95 95 95) 200deg,
      /* 7시 방향을 희미하게 */ #17171e 360deg
    );
  }
  .problems-solutions:before {
    width: 300px;
    height: 350px;
    top: 45%;
  }
  .problem-list {
    display: flex;
    padding: 0 0 200px;
    flex-flow: row;
    max-width: 700px;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: space-between;
    gap: 100px;
  }
  .problem-list > div {
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: calc(50% - 100px);
  }
  .solutions {
    margin: 35px auto 0;
  }
}

@media (max-width: 1024px) {
  .header {
    box-sizing: border-box;
    height: 55px;
    display: flex;
    align-items: center;
    padding: 0 15px;
  }
  .header-content {
    height: auto;
  }
  .subsection-title {
    font-size: 16px;
  }
  .nav {
    display: none;
  }
  .lang-toggle {
    display: flex;
    flex-flow: column;
    position: relative;
    transition-duration: 0.5s;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    background-image: url(../img/down_icon01.png);
    background-position: 100% center;
    background-repeat: no-repeat;
  }
  .lang-toggle.active {
    background-image: url(../img/up_icon01.png);
  }
  .lang-btn {
    position: absolute;
    top: 28px;
    color: var(--color-bg-dark);
    opacity: 0;
    padding: 0 5px 5px;
  }
  .active .lang-btn {
    opacity: 1;
    background: #fff;
    font-size: 13px;
  }
  .lang-btn.active {
    border: 0;
    position: relative;
    top: 0;
    padding: 0;
    font-size: 13px;
  }
  .mobile_area {
    display: flex;
    gap: 20px;
  }
  .mobile_area .mobile-menu-btn {
    display: flex;
    width: 18px;
    height: 13px;
    align-items: center;
    position: relative;
  }
  .mobile_area .mobile-menu-btn > span {
    width: 100%;
    height: 1px;
    background: #171717;
    transition-duration: 0.5s;
  }
  .mobile_area .mobile-menu-btn > span:nth-child(1) {
    position: absolute;
    top: 0;
  }
  .mobile_area .mobile-menu-btn > span:nth-child(2) {
  }
  .mobile_area .mobile-menu-btn > span:nth-child(3) {
    position: absolute;
    bottom: 0;
  }
  .mobile_area .mobile-menu-btn.active {
  }
  .mobile_area .mobile-menu-btn.active > span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
  }
  .mobile_area .mobile-menu-btn.active > span:nth-child(2) {
    opacity: 0;
  }
  .mobile_area .mobile-menu-btn.active > span:nth-child(3) {
    transform: rotate(135deg);
    bottom: 6px;
  }
  .aside.active {
    opacity: 1;
    visibility: visible;
  }
  .hero {
    margin-top: 55px;
    align-items: start;
    padding-top: 75px;
  }
  .features-grid {
    gap: 15px !important;
    padding: 0 15px;
  }
  .features-grid .feature-card {
    width: calc(50% - 10px) !important;
  }
  .hero-title,
  .en .hero-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .hero-subtitle,
  .en .hero-subtitle {
    font-size: 12px;
    margin-bottom: 50px;
    word-break: auto-phrase;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .hero-subtitle br {
    display: none;
  }
  .hero-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
  }
  .hero-title > span:after {
    content: "";
    border-right: 2px solid #fff;
    height: 20px;
    margin: 15px 0;
  }
  .hero .btn-primary,
  .hero .btn-secondary {
    font-size: 13px;
    padding: 13px 24px;
  }
  .section {
    padding: 70px 0 110px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 13px;
  }

  .features-grid .feature-icon img {
    width: 40px;
    height: 40px;
  }
  .features-grid .feature-card {
    padding: 25px 20px !important;
    height: auto !important;
    min-height: auto;
  }
  .features-grid .feature-icon {
    margin-bottom: 30px;
  }
  .features-grid .feature-title {
    font-size: 16px;
  }
  .en .features-grid .feature-title {
    font-size: 14px;
  }
  .features-grid .feature-desc {
    font-size: 13px;
  }

  .timeline {
    padding: 40px 0 0;
  }
  .phase-quarter {
    font-size: 15px;
  }
  .timeline-line {
    top: 131px;
    height: 1120px;
  }
  .en .timeline-line {
    height: 1202px;
  }
  .timeline-line:after {
  }
  .phase-milestones li {
    font-size: 13px;
  }
  .en .phase-milestones li {
    font-size: 11px;
  }
  .timeline-phases {
  }
  .timeline-phases .phase {
  }
  .timeline-phases .phase:nth-child(odd) {
    gap: 15px;
    left: -87px;
  }
  .en .timeline-phases .phase:nth-child(odd) {
    left: -75px;
  }
  .timeline-phases .phase:nth-child(even) {
    gap: 15px;
    right: -64px;
  }
  .en .timeline-phases .phase:nth-child(even) {
    right: -75px;
  }
  .timeline-phases .phase:nth-child(3) {
    left: -112px;
    top: -50px;
  }
  .timeline-phases .phase:nth-child(4) {
    right: -85px;
    top: -70px;
  }
  .timeline-phases .phase:nth-child(5) {
    top: -128px;
    left: -78px;
  }
  .timeline-phases .phase:nth-child(6) {
    right: -75px;
    top: -148px;
  }
  .timeline-phases .phase:nth-child(7) {
    left: -66px;
    top: -205px;
  }
  .timeline-phases .phase-dot {
  }
  .phase:nth-child(odd) .phase-content {
  }
  .en .phase:nth-child(odd) .phase-content {
    width: 135px;
  }
  .en .phase:nth-child(even) .phase-content {
    width: 135px;
  }
  .section {
    padding-bottom: 0;
  }
  #roadmap {
    padding: 0;
  }
  #architecture:after {
    width: 140px;
    height: 140px;
    filter: blur(100px);
    left: -30px;
    top: -30px;
  }
  #model .ring-labels li {
    font-size: 13px;
  }
  .en #model .ring-labels li {
    font-size: 11px;
    width: 115px;
    line-height: 1.5;
  }
  .en #model .ring-labels .top-right {
  }
  #model .flywheel .bg {
    width: 100%;
    max-width: 160px;
  }
  #model .ring-labels {
    width: 100%;
    margin: 0 auto;
  }
  .tokenomics-metrics {
    align-items: center;
    justify-content: center;
    gap: 25px 90px;
    flex-wrap: wrap;
  }
  .metric:nth-child(3) {
    flex: 0 0 100%;
  }
  .metric-label {
    font-size: 14px;
  }
  .metric-value,
  .en .metric-value {
    font-size: 24px;
  }
  .tokenomics-content {
    gap: 55px;
    padding: 0 15px;
  }
  .tokenomics-chart-container {
    margin: 0;
    gap: 18px;
  }
  .tokenomics-chart-container .tc-legend .label {
    text-align: left;
    bottom: 2px;
  }
  .tokenomics-chart-container .tc-legend .name {
    font-size: 15px;
  }
  .tokenomics-chart-container .tc-legend {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  .tokenomics-chart-container .tc-legend .item {
    width: calc(33.3% - 40px);
    display: flex;
    align-items: start;
  }
  .utility-list .content {
    flex-flow: column;
    gap: 10px;
    padding: 15px 20px;
  }
  .utility-list .list {
    gap: 10px;
  }
  .utility-list {
    max-width: calc(100% - 15px);
  }
  .utility-list .item {
    font-size: 13px;
  }
  #model .flywheel:after {
    font-size: 14px;
  }
  .en #model .flywheel:after {
    font-size: 12px;
  }
  #model .flywheel {
    height: 249px;
    width: 360px;
  }
  .en #model .flywheel {
    width: 395px;
  }
  #model .ring-labels .right {
    padding: 0 15px;
    box-sizing: border-box;
    width: 95px;
    white-space: pre-wrap;
    top: 44%;
    right: 4%;
  }
  #model .ring-labels .left-mid {
    left: 4%;
  }
  .problems-solutions {
    padding-bottom: 80px;
  }
  .problems {
    background-size: 85px;
  }
  .problems-solutions .section-header {
    margin-bottom: 30px;
  }
  .problems .subsection-title {
    font-size: 16px;
    top: 29%;
  }
  .en .problems .subsection-title {
    top: 38%;
  }
  .problems-solutions .circle {
    width: 275px;
    height: 285px;
    top: 15%;
  }
  .problem-text,
  .solution-text {
    width: 120px;
    height: 120px;
    font-size: 13px;
  }
  .en .problem-text,
  .en .solution-text {
    font-size: 14px;
    width: 150px;
    height: 150px;
  }
  .problem-list {
    width: 100%;
    max-width: 340px;
    gap: 20px 0;
    padding-bottom: 80px;
  }
  .problem-list > div {
    width: 120px;
    display: flex;
  }
  .solutions {
    flex: 1 0 360px;
    max-width: 360px;
  }
  .solution-list {
    justify-content: center;
    align-items: center;
  }
  .solution-list .stagger-item {
    width: 165px;
  }
  .solutions .reveal {
    margin-bottom: 25px;
  }
  .solution-list .solution-text {
    width: 165px;
    height: 165px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
  }
  .diagram_wrap {
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 25px;
    text-align: center;
  }
  .diagram_wrap img {
    max-width: 745px;
    width: 745px;
  }
  .user-journey {
    width: 100%;
    padding: 20px 5px 25px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .journey-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .journey-steps {
    gap: 25px;
  }
  .en .journey-steps {
  }
  .step-icon {
    width: 35px;
    height: 35px;
  }
  .step-icon img {
    width: 35px;
    height: 35px;
  }
  .step-text {
    font-size: 13px;
  }
  .en .step-text {
    font-size: 10px;
  }
  .journey-steps > div:after {
    width: 12px;
    height: 35px;
    right: -18px;
    top: 0%;
  }
  #tokenomics {
    padding: 110px 0;
  }
  .utility-title {
    font-size: 16px;
  }
  .phase-dot::after {
    width: 5px;
    height: 5px;
  }
  #model {
    margin-top: -150px;
  }
  #model .layers-stage {
    min-height: auto;
  }
  #model .bottom-panels {
    padding: 230px 0 300px;
    max-width: 360px;
  }
  .en #model .bottom-panels {
    max-width: 425px;
    padding: 255px 0 300px;
  }
  #model .supply-overlay .right-title {
    font-size: 15px;
    position: initial;
  }
  #model .supply-overlay .right-title:before {
    width: 1px;
    top: auto;
    transform: none;
    bottom: 0;
    height: 50px;
    left: auto;
    right: 45px;
  }
  .en #model .supply-overlay .right-title:before {
    right: 25px;
  }
  #model .supply-overlay .right-title:after {
    top: auto;
    bottom: 48px;
    right: 44px;
    width: 3px;
    height: 3px;
  }
  .en #model .supply-overlay .right-title:after {
    right: 23.5px;
  }
  #model .bullets li {
    font-size: 13px;
  }
  .en #model .bullets li {
    font-size: 11px;
  }
  #model .layers-img {
    width: 100%;
    max-width: 155px;
  }
  #model .supply-overlay {
    padding-bottom: 21px;
  }
  #model .supply-overlay.left {
    padding-bottom: 40px;
    display: inline-block;
    width: auto;
    left: 0;
    max-width: 155px;
    word-break: keep-all;
  }
  #model .supply-overlay.left.left02 {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 65px 0 0;
    bottom: 40px;
  }
  .en #model .supply-overlay.left.left02 {
    max-width: 100%;
    bottom: 96px;
  }
  .en #model .supply-overlay.left.left02 .bullets li {
    white-space: nowrap;
  }
  #model .supply-overlay.left.left02 .right-title {
  }
  #model .supply-overlay.left.left02 .right-title:before {
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: 0px;
    background: linear-gradient(360deg, #a5bbff 20%, #17171e 74%);
  }
  #model .supply-overlay.left.left02 .right-title:after {
    bottom: auto;
    top: 47px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  #model .supply-overlay.right {
    display: inline-block;
    max-width: none;
    width: auto;
    top: 0;
    transform: none;
    max-width: 160px;
    word-break: keep-all;
  }
  #model .supply-overlay.right .right-title::before {
    width: 1px;
    left: 50px;
    bottom: 0;
    height: 34px;
  }
  .en #model .supply-overlay.right .right-title::before {
    bottom: -20px;
    left: 35px;
    height: 50px;
  }
  #model .supply-overlay.right .right-title::after {
    top: auto;
    bottom: 30px;
    right: auto;
    left: 49px;
    width: 3px;
    height: 3px;
  }
  .en #model .supply-overlay.right .right-title::after {
    left: 34px;
    bottom: 28px;
  }
  .footer {
    padding: 0;
  }
  .footer-content {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 45px 0 30px;
  }
  .contact-item {
    width: auto;
  }
  .contact-item:nth-child(2):after {
    display: none;
  }
  .contact-item:last-child {
    flex: 1 0 100%;
    text-align: center;
  }
  .en .contact-item:last-child {
    padding: 0 15px;
    line-height: 1.5;
  }
  .footer-social {
    margin-top: 65px;
    align-items: center;
    justify-content: center;
  }
  .copyright {
    padding: 14px 0;
    text-align: center;
    overflow: hidden;
  }
  .copyright:after {
    left: 0;
  }
  .problems-solutions:after {
    display: none;
  }
}
@media (max-width: 768px) {
  :root {
    --font-size-hero: 48px;
    --font-size-h1: 36px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    --font-size-caption: 12px;

    --section-padding-y: 48px;
    --container-padding: 16px;
  }

  .nav {
    display: none;
  }

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

  .problems-solutions-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-buttons {
    flex-direction: row;
  }

  .journey-steps {
  }

  .timeline-phases {
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .phase-content {
    max-width: none;
  }

  .tokenomics-chart-container .tc-legend {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: unset;
    row-gap: 14px;
  }
  .utility-list .panel {
    height: auto;
  }
  .utility-list .content {
    grid-template-columns: 1fr;
    row-gap: 14px;
    column-gap: 0;
    padding: 16px 18px 20px;
  }
  .utility-list .item {
    font-size: 14px;
    white-space: normal;
  }
}

/* Scroll reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.move_wallet{
    display: block;
    background: #4a4a4a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 9999px;
    line-height: 1;
    text-decoration: none !important;
}
