@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&family=Orbitron:wght@400;600;700;900&family=Exo+2:ital,wght@0,300;0,400;0,600;1,300&display=swap");

:root {
  --font-display: "Orbitron", sans-serif;
  --font-body: "Noto Sans KR", sans-serif;
}

body {
  font-family: var(--font-body);
  word-break: keep-all;
}

/* =========================================================================
       - Low specificity, mobile-first
       - BEM-like class naming
       - CSS Custom Properties for tokens
       - Logical grouping with clear section comments
       ========================================================================= */

:root {
  /* Color Palette */
  --color-acid: #caff00;
  --color-void: #161616;
  --color-deep: #111118;
  --color-surface: #1a1a28;
  --color-panel: #22223a;
  --color-purple: #7b4dff;
  --color-violet: #a855f7;
  --color-pink: #ff2d78;
  --color-teal: #00ffc2;
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.65);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-glow-acid: rgba(202, 255, 0, 0.18);
  --color-glow-purple: rgba(123, 77, 255, 0.25);

  /* Typography */
  --font-display: "Orbitron", "Noto Sans KR", monospace;
  --font-body: "Exo 2", sans-serif;

  --text-2xs: 0.625rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.75rem;
  --text-5xl: 5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 10rem;


  /* Layout */
  --container-max: 1440px;
  --container-pad: clamp(1rem, 5vw, 3rem);

  /* Z-Index Scale (Z-Index Management) */
  --z-base: 0;
  --z-raised: 10;
  --z-floating: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-nav: 400;
  --z-toast: 500;
  --z-skip: 9999;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 150ms;
  --dur-mid: 300ms;
  --dur-slow: 600ms;

  /* Shadows */
  --shadow-acid: 0 0 40px rgba(202, 255, 0, 0.25),
    0 0 80px rgba(202, 255, 0, 0.1);
  --shadow-purple: 0 0 40px rgba(123, 77, 255, 0.35),
    0 0 80px rgba(123, 77, 255, 0.15);
  --shadow-pink: 0 0 30px rgba(255, 45, 120, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* -------------------------------------------------------------------------
       #GENERIC — Resets & Base
       ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-void);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden; /* Overflow Hidden */
  /* Content Jumping prevention — reserve scrollbar space */
  scrollbar-gutter: stable;
}

::selection {
  background: var(--color-purple);
  color: var(--color-white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-purple);
  border-radius: var(--radius-pill);
}

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

a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* Focus visible (Keyboard Navigation) */
:focus-visible {
  outline: 2px solid var(--color-acid);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


@media (max-width: 768px) {
  #discover,
  #interview {
    padding-inline: 30px;
  }
}


/* -------------------------------------------------------------------------
       #SKIP LINK — Accessibility
       ------------------------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: var(--z-skip);
  padding: var(--space-3) var(--space-6);
  background: var(--color-acid);
  color: var(--color-void);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  transform: translateY(-200%);
  transition: transform var(--dur-mid) var(--ease-out-expo);
}
.skip-link:focus {
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
       #LAYOUT — Container Width & Viewport Units
       ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

/* Stacking Context roots */
.stacking-root {
  isolation: isolate;
}

/* -------------------------------------------------------------------------
       #BUTTONS & INTERACTIVE COMPONENTS
       ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  /* Touch Target Size */
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) ease, background var(--dur-fast) ease;
  position: relative;
  overflow: hidden; /* Overflow Hidden */
}

/* Hover States */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
}
.btn:hover::before {
  opacity: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: var(--color-acid);
  color: var(--color-void);
}
.btn--primary:hover {
  box-shadow: var(--shadow-acid);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-white);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--purple {
  background: var(--color-purple);
  color: var(--color-white);
}
.btn--purple:hover {
  box-shadow: var(--shadow-purple);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  min-height: 36px;
}
.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  min-height: 52px;
}

/* -------------------------------------------------------------------------
       #HERO SECTION
       ------------------------------------------------------------------------- */
.hero {
  /* Viewport Units */
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden; /* Overflow Hidden */
  isolation: isolate; /* Stacking Context */
}

/* Full-screen YouTube background */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--color-void);
}

.hero__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Dark overlay + subtle brand color */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(6, 6, 12, 0.62), rgba(6, 6, 12, 0.72)),
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(123, 77, 255, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(202, 255, 0, 0.06) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}

.hero > .container {
  position: relative;
  z-index: 4;
}

.hero .glow-orb {
  z-index: 3;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: var(--space-16);
  width: 100%;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(202, 255, 0, 0.3);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-acid);
  margin-bottom: var(--space-8);
  background: rgba(202, 255, 0, 0.06);
  animation: fadeInDown 0.8s var(--ease-out-expo) both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-acid);
  animation: pulse 2s infinite;
}

/* Heading Hierarchy — h1 for hero */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.9s 0.1s var(--ease-out-expo) both;
}

.hero__title-line--acid {
  color: var(--color-acid);
}
.hero__title-line--muted {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: var(--color-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
  animation: fadeInUp 1s 0.2s var(--ease-out-expo) both;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.3s var(--ease-out-expo) both;
}

/* 모바일: 유튜브 영상 대신 이미지 배경 */
@media screen and (max-width: 768px) {
  .hero__video-bg iframe {
    display: none;
  }

  .hero__video-bg {
    background-image: url("/ko/img/hero-mobile.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}


/* -------------------------------------------------------------------------
       #STATS BAR
       ------------------------------------------------------------------------- */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-4);
  overflow: hidden; /* Overflow Hidden */
}

.stats-bar__track {
  display: flex;
  gap: var(--space-16);
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.stats-bar__label {
  color: var(--color-muted);
  font-size: var(--text-xs);
}
.stats-bar__value {
  font-weight: 700;
}
.stats-bar__change--up {
  color: var(--color-acid);
}
.stats-bar__change--down {
  color: var(--color-pink);
}

.stats-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
}

/* -------------------------------------------------------------------------
       #FEATURES SECTION
       ------------------------------------------------------------------------- */
.section {
  padding-block: var(--space-24);
}

.section--alt {
  background: var(--color-deep);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

/* Heading Hierarchy */
.section__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-acid);
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.section__desc {
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.7;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.feature-card {
  display: flex;
  flex-direction: column;

  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-mid) var(--ease-out-expo),
    border-color var(--dur-mid) ease,
    box-shadow var(--dur-mid) ease;
  isolation: isolate;
}

.feature-card__desc {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.feature-card__tag {
  margin-top: auto;
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: rgba(202, 255, 0, 0.1);
  color: var(--color-acid);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Hover States */
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 77, 255, 0.4);
  box-shadow: var(--shadow-purple);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(123, 77, 255, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--dur-mid) ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--highlight {
  background: linear-gradient(
    135deg,
    rgba(123, 77, 255, 0.15) 0%,
    rgba(202, 255, 0, 0.05) 100%
  );
  border-color: rgba(123, 77, 255, 0.25);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-6);
  font-size: 24px;
  position: relative;
}

.feature-card__icon--acid {
  background: rgba(202, 255, 0, 0.12);
}
.feature-card__icon--purple {
  background: rgba(123, 77, 255, 0.15);
}
.feature-card__icon--pink {
  background: rgba(255, 45, 120, 0.12);
}
.feature-card__icon--teal {
  background: rgba(0, 255, 194, 0.1);
}

/* Heading Hierarchy — h3 for cards */
.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.feature-card__desc {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.feature-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: rgba(202, 255, 0, 0.1);
  color: var(--color-acid);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}


@media (max-width: 768px) {
  .section__desc {
    font-size: 15px;
    line-height: 1.65;
  }
}
/* -------------------------------------------------------------------------
       #STATS SECTION
       ------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.stat-item {
  padding: var(--space-8);
  background: rgba(20, 20, 30, 0.85);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--dur-mid) var(--ease-out-expo);
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, var(--color-acid), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  color: var(--color-muted);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
       #TOKEN CARDS (DeFi Section)
       ------------------------------------------------------------------------- */
.tokens-section {
  position: relative;
  overflow: hidden;
}

.token-scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-4);
  /* Touch Spacing */
  scroll-snap-type: x mandatory;
}
.token-scroll-container::-webkit-scrollbar {
  display: none;
}

.token-scroll-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  padding: var(--space-2);
}

.token-card {
  width: 220px;
  flex-shrink: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  scroll-snap-align: start;
  transition: transform var(--dur-mid) var(--ease-out-expo),
    box-shadow var(--dur-mid) ease;
}

.token-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.token-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.token-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: var(--text-sm);
}

.token-card__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 2px;
}
.token-card__ticker {
  color: var(--color-muted);
  font-size: var(--text-xs);
}

.token-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.token-card__change {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.token-card__change--up {
  background: rgba(202, 255, 0, 0.12);
  color: var(--color-acid);
}
.token-card__change--down {
  background: rgba(255, 45, 120, 0.12);
  color: var(--color-pink);
}

.sparkline {
  margin-top: var(--space-4);
  height: 40px;
  position: relative;
}

.sparkline svg {
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------------------------------
       #CTA SECTION
       ------------------------------------------------------------------------- */
.cta-section {
  padding-block: var(--space-28);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-deep);
}

/* CTA YOUTUBE BACKGROUND */
.cta-section__video {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background: var(--color-deep);
}

.cta-section__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(7, 7, 15, 0.58) 0%,
      rgba(7, 7, 15, 0.38) 48%,
      rgba(7, 7, 15, 0.68) 100%
    ),
    radial-gradient(
      ellipse 70% 80% at 50% 50%,
      rgba(123, 77, 255, 0.2) 0%,
      transparent 70%
    );
}


@media (max-width: 767px) {
  .cta-section__video iframe {
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
  }
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-section__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.download-badges {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) ease, transform var(--dur-fast) ease;
  min-height: 52px; /* Touch Target */
}

.download-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.download-badge__icon {
  font-size: 22px;
}
.download-badge__text {
  text-align: left;
}
.download-badge__sub {
  font-size: var(--text-xs);
  color: var(--color-muted);
}
.download-badge__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
}

/* -------------------------------------------------------------------------
       #FOOTER
       ------------------------------------------------------------------------- */
.footer {
  background: var(--color-deep);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.footer__brand p {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
  margin-top: var(--space-4);
}

.footer__links-group {
}
.footer__links-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-4);
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__link {
  color: var(--color-muted);
  font-size: var(--text-sm);
  transition: color var(--dur-fast) ease;
  min-height: 44px; /* Touch Target */
  display: flex;
  align-items: center;
}
.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: var(--text-xs);
}

/* -------------------------------------------------------------------------
       #UTILITIES
       ------------------------------------------------------------------------- */
.u-hidden {
  display: none;
}

/* -------------------------------------------------------------------------
       #GLOW ORB POSITIONS
       ------------------------------------------------------------------------- */
.glow-orb--hero-purple {
  width: 500px;
  height: 500px;
  top: 10%;
  right: -100px;
}
.glow-orb--hero-acid {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: -50px;
}
.glow-orb--tokens-center {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* -------------------------------------------------------------------------
       #HERO BREADCRUMBS
       ------------------------------------------------------------------------- */
.hero__breadcrumbs {
  margin-bottom: var(--space-8);
}

/* -------------------------------------------------------------------------
       #TOKEN ICON VARIANTS
       ------------------------------------------------------------------------- */
.token-icon--btc {
  background: #f7931a;
  color: #fff;
}
.token-icon--eth {
  background: #627eea;
  color: #fff;
}
.token-icon--sol {
  background: linear-gradient(135deg, #9945ff, #14f195);
  color: #fff;
}
.token-icon--bnb {
  background: #f3ba2f;
  color: #000;
}
.token-icon--avax {
  background: #e84142;
  color: #fff;
}

/* -------------------------------------------------------------------------
       #CONTAINER BLEED (tokens scroll)
       ------------------------------------------------------------------------- */
.container--bleed {
  padding-right: 0;
  overflow: visible;
}

/* -------------------------------------------------------------------------
       #FOOTER EXTENSIONS
       ------------------------------------------------------------------------- */
.footer__link--inline {
  display: inline;
}

.footer__subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-10);
}

.footer__portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  min-height: 64px;
  transition: border-color var(--dur-mid) ease, background var(--dur-mid) ease,
    box-shadow var(--dur-fast) ease,
    transform var(--dur-fast) var(--ease-spring);
}

.footer__portfolio-link:hover {
  border-color: var(--color-acid);
  background: rgba(202, 255, 0, 0.04);
  box-shadow: var(--shadow-acid);
  transform: translateY(-2px);
}

.footer__portfolio-link-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__codepen-icon {
  width: 28px;
  height: 28px;
  color: var(--color-acid);
  flex-shrink: 0;
  transition: transform var(--dur-mid) var(--ease-spring);
}

.footer__portfolio-link:hover .footer__codepen-icon {
  transform: rotate(15deg) scale(1.1);
}

.footer__portfolio-sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 2px;
}

.footer__portfolio-name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) ease;
}

.footer__portfolio-link:hover .footer__portfolio-name {
  color: var(--color-acid);
}

.footer__external-icon {
  width: 12px;
  height: 12px;
  color: var(--color-muted);
  flex-shrink: 0;
  transition: color var(--dur-fast) ease, transform var(--dur-fast) ease;
}

.footer__portfolio-link:hover .footer__external-icon {
  color: var(--color-acid);
  transform: translate(2px, -2px);
}

/* -------------------------------------------------------------------------
       #ANIMATIONS
       ------------------------------------------------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .stats-bar__track {
    animation: none;
  }
}

/* -------------------------------------------------------------------------
       #RESPONSIVE — Mobile-First Design
       ------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .hero__content {
    text-align: left;
  }
  .hero__subtitle {
    margin-inline: 0;
  }
  .hero__actions {
    justify-content: flex-start;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Floating scroll-to-top (Fixed Positioning) */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-floating);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-acid);
  color: var(--color-void);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-mid) ease,
    transform var(--dur-mid) var(--ease-out-expo),
    box-shadow var(--dur-fast) ease;
  pointer-events: none;
  box-shadow: var(--shadow-card);
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  box-shadow: var(--shadow-acid);
  transform: translateY(-3px);
}

/* Toast notification (Fixed Positioning, Z-Index) */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: var(--z-toast);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-slow) var(--ease-out-expo);
  white-space: nowrap;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.toast__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-acid);
  flex-shrink: 0;
}

/* Glow orbs (decorative, Stacking Context) */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.glow-orb--purple {
  background: rgba(123, 77, 255, 0.3);
}
.glow-orb--acid {
  background: rgba(202, 255, 0, 0.2);
}
.glow-orb--pink {
  background: rgba(255, 45, 120, 0.2);
}


/* Footer brand (top navigation removed) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: 0.05em;
}

.brand-logo .nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--color-acid);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.brand-logo .nav__logo-mark svg {
  width: 18px;
  height: 18px;
}




.stats-bar__logo {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 600px) {
  .stats-bar__logo {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}




/* STATS 유튜부 배경 */ 

.stats-video-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  background: #080812;
}

.stats-video-section__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.stats-video-section__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-video-section__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(7, 7, 15, 0.38) 0%,
      rgba(7, 7, 15, 0.2) 45%,
      rgba(7, 7, 15, 0.45) 100%
    ),
    linear-gradient(
      90deg,
      rgba(7, 7, 15, 0.22),
      rgba(7, 7, 15, 0.05),
      rgba(7, 7, 15, 0.22)
    );
}

.stats-video-section__content {
  position: relative;
  z-index: 1;
}

.stats-video-section .section__title,
.stats-video-section .stat-item__number,
.stats-video-section .feature-card__title {
  color: #fff;
}

.stats-video-section .section__eyebrow {
  color: var(--color-acid);
}

.stats-video-section .stat-item__label {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 767px) {
  .stats-video-section {
    min-height: auto;
  }

  .stats-video-section__media iframe {
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
  }
}




/* -------------------------------------------------------------------------
       #TOP 5 FAN TOKEN MARKET
------------------------------------------------------------------------- */

.token-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.token-card__rank {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: 4px 9px;
  border: 1px solid rgba(202, 255, 0, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(202, 255, 0, 0.08);
  color: var(--color-acid);
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.token-card__identity {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
  padding-right: 52px;
}

.token-card__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.token-card__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.token-card__logo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
}

.token-card__name {
  max-width: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.token-card__change {
  align-self: flex-start;
}

.token-card .sparkline {
  width: 100%;
  margin-top: auto;
  padding-top: var(--space-6);
}

.sparkline--empty {
  opacity: 0.25;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.token-card--loading {
  width: 100%;
  min-height: 180px;
  align-items: center;
  justify-content: center;
}

.token-card__loading {
  color: var(--color-muted);
  font-family: "Noto Sans KR", sans-serif;
  font-size: var(--text-sm);
  text-align: center;
}

@media (min-width: 900px) {
  .token-scroll-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .token-card {
    width: auto;
    min-width: 0;
  }
   .token-card__rank {
    top: 50px;
  }
}

@media (max-width: 899px) {
  .container--bleed {
    padding-right: var(--container-pad);
  }

  .token-scroll-container {
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .token-scroll-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding: 0;
  }

  .token-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 230px;
    scroll-snap-align: none;
  }
}



/* =========================================================================
   INTERVIEW / FAN STORIES
   ========================================================================= */
.interview-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(123, 77, 255, 0.16), transparent 31%),
    radial-gradient(circle at 4% 90%, rgba(202, 255, 0, 0.07), transparent 26%),
    var(--color-deep);
}

.interview-section__glow {
  position: absolute;
  top: 32%;
  right: -15%;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(123, 77, 255, 0.13);
  filter: blur(100px);
  pointer-events: none;
}

.interview-section__header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.interview-slider {
  position: relative;
  z-index: 1;
  outline: none;
}

.interview-slider__viewport {
  overflow: hidden;
}

.interview-slider__track {
  display: flex;
  gap: 24px;
  width: 100%;
  transition: transform 800ms var(--ease-out-expo);
  will-change: transform;
}

.interview-card {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 3);
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
}

.interview-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--color-surface);
}

.interview-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 17, 24, 0.28) 100%);
  pointer-events: none;
}

.interview-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.025);
  transition: transform 1.2s var(--ease-out-expo);
}

.interview-card.is-active .interview-card__visual img {
  transform: scale(1);
}

.interview-card__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 28px 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.interview-card__quote-mark {
  position: absolute;
  top: 8px;
  right: 20px;
  color: rgba(202, 255, 0, 0.13);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
}

.interview-card__quote {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.035em;
}

.interview-card__person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.interview-card__badge {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.interview-card__name,
.interview-card__sub {
  display: block;
  font-family: "Noto Sans KR", sans-serif;
}

.interview-card__name {
  color: var(--color-white);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.interview-card__sub {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.interview-slider__controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.interview-slider__arrows { display: flex; gap: 10px; }
.interview-slider__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  cursor: pointer;
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.interview-slider__arrow:hover { border-color: var(--color-acid); background: var(--color-acid); color: var(--color-void); transform: translateY(-2px); }
.interview-slider__arrow svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.interview-slider__dots { display: flex; justify-content: center; align-items: center; gap: 8px; }
.interview-slider__dot { width: 7px; height: 7px; border: 0; border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.26); cursor: pointer; transition: width var(--dur-mid) var(--ease-out-expo), background var(--dur-fast) ease; }
.interview-slider__dot.is-active { width: 32px; background: var(--color-acid); }
.interview-slider__count { justify-self: end; display: flex; align-items: baseline; gap: 8px; color: rgba(255, 255, 255, 0.42); font-family: var(--font-display); font-size: 0.78rem; }
.interview-slider__count strong { color: var(--color-white); font-size: 1.2rem; }

@media (max-width: 1023px) {
  .interview-slider__track { gap: 20px; }
  .interview-card { flex-basis: calc((100% - 20px) / 2); }
}

@media (max-width: 599px) {
  .interview-section { padding: 70px 0; }
  .interview-section__header .section__desc br { display: none; }
  .interview-slider__track { gap: 14px; }
  .interview-card { flex-basis: 100%; border-radius: 22px; }
  .interview-card__visual { aspect-ratio: 4 / 3; }
  .interview-card__content { min-height: 355px; padding: 32px 22px 26px; }
  .interview-card__quote { font-size: 1.02rem; }
  .interview-card__person { gap: 12px; padding-top: 20px; }
  .interview-slider__controls { grid-template-columns: 1fr auto; gap: 14px; margin-top: 18px; }
  .interview-slider__dots { grid-column: 1 / -1; grid-row: 1; }
  .interview-slider__arrows { grid-column: 1; grid-row: 2; gap: 7px; }
  .interview-slider__arrow { width: 42px; height: 42px; }
  .interview-slider__count { grid-column: 2; grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .interview-slider__track,
  .interview-card__visual img {
    transition: none;
  }
}

/* =========================================================================
   FAQ / FAN TOKEN QUESTIONS
   - CTA SECTION 위 기본 아코디언
   - 제목 중앙 정렬 / 번호·질문·화살표 열 정렬
   - 같은 질문을 다시 누르면 닫힘
   ========================================================================= */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(123, 77, 255, 0.14), transparent 30%),
    radial-gradient(circle at 6% 90%, rgba(202, 255, 0, 0.06), transparent 26%),
    var(--color-deep);
  border-top: 1px solid var(--color-border);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section__header {
  width: 100%;
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 68px);
  text-align: center;
}

.faq-section__header .section__eyebrow {
  display: inline-block;
}

.faq-section__header .section__title {
  margin-bottom: var(--space-5);
}

.faq-section__header .section__desc {
  max-width: 680px;
  margin-inline: auto;
}

.faq-list {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item__button {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  column-gap: var(--space-5);
  padding: var(--space-5) 0;
  color: var(--color-white);
  text-align: left;
  cursor: pointer;
}

.faq-item__number {
  display: block;
  width: 44px;
  color: var(--color-acid);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  line-height: 1;
  text-align: left;
}

.faq-item__question {
  display: block;
  min-width: 0;
  color: var(--color-white);
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
  transition: color var(--dur-fast) ease;
}

.faq-item__icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  justify-self: end;
  color: var(--color-white);
  transition: color var(--dur-mid) ease, transform var(--dur-mid) var(--ease-out-expo);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transform-origin: center;
  transition: transform var(--dur-mid) var(--ease-out-expo);
}

.faq-item__icon::before {
  transform: translate(-78%, -50%) rotate(45deg);
}

.faq-item__icon::after {
  transform: translate(-22%, -50%) rotate(-45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition:
    grid-template-rows var(--dur-slow) var(--ease-out-expo),
    opacity var(--dur-mid) ease,
    visibility 0s linear var(--dur-slow);
}

.faq-item__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item__answer {
  max-width: 1080px;
  margin: 0 64px 0 64px;
  padding: 0 0 var(--space-8);
  color: var(--color-muted);
  font-family: "Noto Sans KR", sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.025em;
}

.faq-item__button:hover .faq-item__question,
.faq-item__button:hover .faq-item__icon,
.faq-item.is-open .faq-item__question,
.faq-item.is-open .faq-item__icon {
  color: var(--color-acid);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  transition:
    grid-template-rows var(--dur-slow) var(--ease-out-expo),
    opacity var(--dur-mid) ease,
    visibility 0s linear 0s;
}

.faq-item.is-open .faq-item__icon::before {
  transform: translate(-78%, -50%) rotate(-45deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-22%, -50%) rotate(45deg);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 72px 15px;
  }

  .faq-section__header {
    margin-bottom: 34px;
  }

  .faq-item__button {
    min-height: 74px;
    grid-template-columns: 30px minmax(0, 1fr) 36px;
    column-gap: 12px;
    padding: 17px 0;
  }

  .faq-item__number {
    width: 30px;
    font-size: 0.82rem;
  }

  .faq-item__question {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .faq-item__icon {
    width: 36px;
    height: 36px;
  }

  .faq-item__answer {
    margin: 0 36px 0 42px;
    padding: 0 0 24px;
    font-size: 0.9rem;
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-item__icon,
  .faq-item__icon::before,
  .faq-item__icon::after,
  .faq-item__question {
    transition: none;
  }
}


/* =========================================================================
   HERO FAN TOKEN MARKET PANEL
   ========================================================================= */
.hero-market {
  width: 100%;
  max-width: 650px;
  justify-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.58), rgba(10, 10, 18, 0.42));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: fadeInUp 1s 0.4s var(--ease-out-expo) both;
}

.hero-market__head,
.hero-market__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-market__head .section__eyebrow {
  margin-bottom: 7px;
}

.hero-market__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-market__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-acid);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-market__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
  animation: pulse 2s infinite;
}

.hero-market__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-market__summary-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-market__summary-card > span,
.hero-market__summary-card small {
  display: block;
  color: var(--color-muted);
  font-size: 0.74rem;
}

.hero-market__summary-card strong {
  display: block;
  overflow: hidden;
  margin: 7px 0 2px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-market__table-head,
.hero-market__row {
  display: grid;
  grid-template-columns: minmax(190px, 1.35fr) minmax(92px, 0.72fr) minmax(92px, 0.72fr);
  align-items: center;
  column-gap: 14px;
}

.hero-market__table-head {
  padding: 20px 10px 9px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.hero-market__table-head span:not(:first-child) {
  text-align: right;
}

.hero-market__list {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-market__row {
  min-height: 64px;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
}

.hero-market__row:hover {
  background: rgba(202, 255, 0, 0.045);
  transform: translateX(3px);
}

.hero-market__asset {
  display: flex;
  align-items: center;
  min-width: 0;
}

.hero-market__rank {
  width: 25px;
  flex: 0 0 25px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-display);
  font-size: 0.61rem;
}

.hero-market__logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-market__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-market__logo b {
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.hero-market__name {
  display: block;
  min-width: 0;
}

.hero-market__name strong,
.hero-market__name small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-market__name strong {
  font-size: 0.8rem;
  font-weight: 650;
}

.hero-market__name small {
  margin-top: 2px;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 0.59rem;
}

.hero-market__name em {
  margin-left: 5px;
  font-style: normal;
}

.hero-market__name em.is-up { color: var(--color-acid); }
.hero-market__name em.is-down { color: var(--color-pink); }

.hero-market__metric {
  min-width: 0;
  text-align: right;
}

.hero-market__metric strong,
.hero-market__metric small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-market__metric strong {
  font-family: var(--font-display);
  font-size: 0.69rem;
  font-weight: 700;
}

.hero-market__metric small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.66rem;
}

.hero-market__loading {
  padding: 48px 20px;
  color: var(--color-muted);
  font-size: 0.82rem;
  text-align: center;
}

.hero-market__foot {
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.hero-market__foot a {
  color: var(--color-white);
  font-weight: 600;
}

.hero-market__foot a:hover {
  color: var(--color-acid);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(42px, 5vw, 82px);
  }
}

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

  .hero__inner {
    padding-top: 150px;
    padding-bottom: 70px;
  }

  .hero-market {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 600px) {
  .hero-market {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .hero-market__summary {
    grid-template-columns: 1fr;
  }

  .hero-market__table-head {
    display: none;
  }

  .hero-market__list {
    margin-top: 16px;
  }

  .hero-market__row {
    grid-template-columns: minmax(0, 1fr) 78px;
    column-gap: 8px;
  }

  .hero-market__row .hero-market__metric:last-child {
    display: none;
  }

  .hero-market__name strong {
    max-width: 135px;
  }
}