:root {
  --bg-main: #f8efd8;
  --bg-soft: #f2e1bc;
  --paper: #fff8ea;
  --paper-strong: #fffaf1;
  --brown-dark: #4f341f;
  --brown-mid: #735033;
  --brown-light: #a67a4d;
  --gold: #f6c45c;
  --gold-deep: #e7a93b;
  --gold-soft: #ffe3a6;
  --text-dark: #4a321f;
  --text-light: #fff8eb;
  --line-soft: rgba(79, 52, 31, 0.08);
  --line-mid: rgba(79, 52, 31, 0.14);
  --shadow-soft: 0 14px 30px rgba(75, 50, 30, 0.12);
  --shadow-big: 0 25px 60px rgba(75, 50, 30, 0.18);
  --shadow-gold: 0 18px 40px rgba(231, 169, 59, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --nav-height: 84px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(255, 212, 122, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(176, 214, 126, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf3e2 0%, #f5e7ca 55%, #f8efd8 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 225, 163, 0.75), transparent 34%),
    linear-gradient(180deg, #f7e8c8 0%, #efd09a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-inner {
  width: min(440px, calc(100% - 36px));
  text-align: center;
  padding: 34px 28px;
  border-radius: 30px;
  background: rgba(255, 248, 234, 0.78);
  border: 1px solid rgba(79, 52, 31, 0.08);
  box-shadow: 0 24px 60px rgba(75, 50, 30, 0.16);
  backdrop-filter: blur(10px);
}

.site-loader-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 18px;
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.site-loader h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--brown-dark);
}

.site-loader p {
  margin: 10px 0 0;
  color: rgba(74, 50, 31, 0.84);
  line-height: 1.7;
}

.site-loader-bar {
  width: 100%;
  height: 14px;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(79, 52, 31, 0.08);
  overflow: hidden;
}

.site-loader-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 10px 24px rgba(231, 169, 59, 0.28);
  animation: loaderFill 2.2s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderFill {
  0% {
    width: 0%;
  }

  70% {
    width: 88%;
  }

  100% {
    width: 100%;
  }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  background: rgba(255, 248, 234, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-container {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  position: relative;
  font-weight: 700;
  color: var(--brown-mid);
  transition: color 0.22s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav-menu a:hover {
  color: var(--brown-dark);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: var(--brown-mid);
  color: var(--text-light);
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.mobile-menu {
  display: none;
  padding: 0 14px 14px;
  background: rgba(255, 248, 234, 0.96);
  border-top: 1px solid var(--line-soft);
}

.mobile-menu.open {
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown-mid);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.mobile-play {
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 50% 20%, #f8deb1 0%, #efd09a 34%, #d7b178 68%, #c79f66 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  background: #ffd873;
  top: 6%;
  left: 4%;
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  background: #fff1c7;
  right: 8%;
  bottom: 8%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: center;
  gap: 60px;
}

.hero-left {
  text-align: left;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 50, 31, 0.82);
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.52);
  border: 1px solid rgba(79, 52, 31, 0.06);
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.03;
  color: var(--brown-dark);
  max-width: 640px;
}

.hero-text {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  color: rgba(74, 50, 31, 0.92);
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 720px;
}

.hero-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 248, 234, 0.55);
  border: 1px solid rgba(79, 52, 31, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-size: 14px;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.hero-stat span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(74, 50, 31, 0.84);
}

.hero-art-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-art-wrap::before {
  content: "";
  position: absolute;
  inset: auto 14% 8% 14%;
  height: 20px;
  border-radius: 999px;
  background: rgba(74, 50, 31, 0.18);
  filter: blur(18px);
  z-index: 0;
}

.hero-art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  box-shadow: var(--shadow-big);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
  box-shadow: var(--shadow-soft);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #583715;
}

.btn-brown {
  background: linear-gradient(180deg, #7f5632 0%, #664227 100%);
  color: var(--text-light);
}

.btn-cta {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.26) 50%,
    transparent 100%
  );
  transform: skewX(-22deg);
}

.btn-cta:hover {
  box-shadow: 0 24px 48px rgba(231, 169, 59, 0.36);
}

.btn-cta:hover::before {
  animation: shineSweep 0.85s ease;
}

@keyframes shineSweep {
  0% {
    left: -140%;
  }

  100% {
    left: 160%;
  }
}

/* SECTION */
.section {
  position: relative;
  padding: 96px 0;
}

.section-soft {
  background: rgba(255, 249, 239, 0.42);
  backdrop-filter: blur(6px);
}

.section-head {
  margin-bottom: 28px;
}

.section-head-light h2,
.section-head-light .section-label {
  color: var(--text-light);
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brown-mid);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-soft);
}

.section-label-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-light);
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.08;
  color: var(--brown-dark);
}

/* ALPHA SECTION */
.alpha-section {
  padding-top: 34px;
}

.alpha-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.alpha-copy,
.alpha-board {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-big);
}

.alpha-copy {
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 226, 168, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 235, 0.98));
  border: 1px solid var(--line-soft);
}

.alpha-copy h2 {
  margin: 0;
  max-width: 620px;
}

.alpha-text {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(74, 50, 31, 0.88);
}

.alpha-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.alpha-meta-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(79, 52, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.alpha-meta-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  color: var(--brown-dark);
}

.alpha-meta-card span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(74, 50, 31, 0.8);
}

.alpha-buttons {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.alpha-board {
  padding: 24px;
  background: linear-gradient(180deg, #8a5e38 0%, #694229 100%);
  color: var(--text-light);
}

.alpha-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.alpha-board-head h3 {
  margin: 0;
  font-size: 24px;
  color: var(--text-light);
}

.alpha-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 235, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alpha-live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dff98;
  box-shadow: 0 0 12px rgba(125, 255, 152, 0.9);
}

.alpha-list {
  display: grid;
  gap: 12px;
  min-height: 250px;
}

.alpha-loading,
.alpha-empty,
.alpha-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 235, 0.88);
}

.alpha-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease;
}

.alpha-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.alpha-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.alpha-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #583715;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.alpha-user-text {
  min-width: 0;
}

.alpha-name {
  display: block;
  font-weight: 800;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alpha-wallet {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: rgba(255, 248, 235, 0.74);
}

.alpha-badge {
  flex-shrink: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(246, 196, 92, 0.16);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
}

.alpha-board-foot {
  margin-top: 18px;
}

.alpha-link {
  color: var(--gold-soft);
  font-weight: 800;
}

.alpha-link:hover {
  opacity: 0.86;
}

@media (max-width: 1080px) {
  .alpha-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .alpha-meta {
    grid-template-columns: 1fr;
  }

  .alpha-copy,
  .alpha-board {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .alpha-section {
    padding-top: 20px;
  }

  .alpha-board-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .alpha-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .alpha-badge {
    align-self: flex-start;
  }
}

/* TRUST */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 235, 0.98));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-big);
  border-color: rgba(231, 169, 59, 0.28);
}

.trust-card h3 {
  margin: 0 0 12px;
  color: var(--brown-dark);
  font-size: 24px;
}

.trust-card p {
  margin: 0;
  line-height: 1.8;
  color: rgba(74, 50, 31, 0.86);
}

/* OVERVIEW */
.overview-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 235, 0.96));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-big);
}

.overview-copy {
  display: grid;
  gap: 16px;
  font-size: 17px;
  line-height: 1.8;
}

.overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #9b6f43 0%, #744d2d 100%);
  color: var(--text-light);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

/* GALLERY */
.gallery-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.gallery-main-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 235, 0.98));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-big);
}

.main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e8d9b8;
}

.gallery-caption {
  padding: 24px;
}

.gallery-caption h3 {
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--brown-dark);
}

.gallery-caption p {
  margin: 0;
  line-height: 1.75;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.thumb {
  border: 2px solid transparent;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 235, 0.96));
  padding: 10px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.thumb:hover {
  transform: translateY(-2px);
}

.thumb.active {
  border-color: var(--gold-deep);
  box-shadow: 0 16px 36px rgba(231, 169, 59, 0.2);
}

.thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.thumb span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--brown-dark);
}

/* TOKENOMICS */
.token-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.token-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #8a5e38 0%, #694229 100%);
  color: var(--text-light);
  box-shadow: var(--shadow-big);
}

.token-card-wide {
  grid-column: span 2;
}

.token-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 26px;
}

.token-card p {
  line-height: 1.75;
  color: rgba(255, 248, 235, 0.92);
}

.token-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.token-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.token-list strong {
  color: var(--text-light);
}

.token-list span {
  text-align: right;
  color: rgba(255, 248, 235, 0.9);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.usecase-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 235, 0.94);
  font-weight: 800;
  line-height: 1.6;
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.allocation-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.allocation-item span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}

.allocation-item small {
  line-height: 1.6;
  color: rgba(255, 248, 235, 0.9);
}

.mint-box {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.mint-box code {
  flex: 1;
  min-width: 240px;
  word-break: break-all;
  color: var(--gold-soft);
  font-size: 15px;
}

.copy-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(255, 248, 235, 0.86);
}

/* ROADMAP */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.road-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 235, 0.98));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.road-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-big);
}

.road-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #5d3a16;
  font-size: 13px;
  font-weight: 900;
}

.road-card h3 {
  margin: 0 0 12px;
  color: var(--brown-dark);
}

.road-card p {
  margin: 0;
  line-height: 1.75;
}

/* NIMIA */
.nimia-card {
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, #8a5c36 0%, #623d23 100%);
  color: var(--text-light);
  box-shadow: var(--shadow-big);
}

.nimia-text {
  max-width: 760px;
  line-height: 1.8;
  margin: 0 0 24px;
  color: rgba(255, 248, 235, 0.92);
}

/* COMMUNITY */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.community-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 235, 0.98));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.community-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-big);
}

.community-card h3 {
  margin: 0 0 10px;
  color: var(--brown-dark);
}

.community-card p {
  margin: 0;
  line-height: 1.75;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 235, 0.98));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--brown-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
  line-height: 1.75;
}

/* FOOTER */
.footer {
  padding: 34px 0;
  background: #5a3923;
  color: var(--text-light);
}

.footer-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-container p {
  margin: 8px 0 0;
  max-width: 520px;
  line-height: 1.7;
  color: rgba(255, 248, 235, 0.84);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal-visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* MOBILE DEV MODAL */
.mobile-dev-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-dev-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-dev-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(52, 33, 20, 0.45);
  backdrop-filter: blur(8px);
}

.mobile-dev-card {
  position: relative;
  width: min(520px, 100%);
  background: linear-gradient(180deg, #fff9ee 0%, #f5e6c8 100%);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: 30px 26px 26px;
  box-shadow: 0 30px 80px rgba(75, 50, 30, 0.22);
  z-index: 1;
  animation: mobilePopupIn 0.32s ease;
}

.mobile-dev-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(79, 52, 31, 0.08);
  color: var(--brown-dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.mobile-dev-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(246, 196, 92, 0.22);
  color: var(--brown-mid);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-dev-card h3 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.05;
  color: var(--brown-dark);
}

.mobile-dev-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(74, 50, 31, 0.88);
}

.mobile-dev-progress-wrap {
  margin-top: 24px;
}

.mobile-dev-progress-bar {
  width: 100%;
  height: 16px;
  background: rgba(79, 52, 31, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.mobile-dev-progress-fill {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 8px 20px rgba(231, 169, 59, 0.28);
}

.mobile-dev-progress-text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-mid);
}

.mobile-dev-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

@keyframes mobilePopupIn {
  from {
    transform: translateY(18px) scale(0.96);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

body.modal-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .overview-card,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .token-grid,
  .roadmap-grid,
  .community-grid,
  .allocation-grid,
  .usecase-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .token-card-wide {
    grid-column: span 2;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 32px;
  }

  .hero h1 {
    max-width: 520px;
  }

  .hero-text {
    max-width: 460px;
  }

  .hero-art {
    max-width: 360px;
  }

  .hero-mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-menu,
  .nav-actions .btn-small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .overview-points,
  .thumb-grid,
  .token-grid,
  .allocation-grid,
  .roadmap-grid,
  .community-grid,
  .usecase-grid,
  .trust-grid,
  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .token-card-wide {
    grid-column: span 1;
  }

  .section {
    padding: 84px 0;
  }

  .nimia-card {
    padding: 28px;
  }

  .hero {
    padding: 54px 0 64px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: 24px;
  }

  .hero-left {
    text-align: left;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-art {
    width: 100%;
    max-width: 260px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero {
    padding: 38px 0 56px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 18px;
    align-items: center;
  }

  .hero-left {
    text-align: left;
  }

  .hero-kicker {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 14px;
  }

  .hero-buttons {
    width: 100%;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-art {
    width: 140px;
    max-width: 140px;
    border-radius: 18px;
  }

  .overview-card,
  .token-card,
  .community-card,
  .road-card,
  .trust-card {
    padding: 22px;
  }

  .mint-box {
    align-items: stretch;
  }

  .site-loader-inner {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .site-loader-logo {
    width: 74px;
    height: 74px;
  }

  .mobile-dev-card {
    padding: 26px 18px 20px;
    border-radius: 22px;
  }

  .mobile-dev-card h3 {
    font-size: 28px;
  }

  .mobile-dev-actions .btn {
    width: 100%;
  }
}

/* ROADMAP STATUS */
.road-status {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.road-status.done {
  background: #d4f5d9;
  color: #1f7a2e;
}

.road-status.active {
  background: rgba(246, 196, 92, 0.25);
  color: #8a5a1c;
}

.road-status.upcoming {
  background: rgba(79, 52, 31, 0.08);
  color: rgba(79, 52, 31, 0.6);
}

/* PROGRESS BAR */
.road-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(79, 52, 31, 0.08);
  overflow: hidden;
  margin-bottom: 14px;
}

.road-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  box-shadow: 0 6px 14px rgba(231, 169, 59, 0.3);
}

/* CARD STATES */
.road-card.done {
  border: 2px solid #b7e3c1;
}

.road-card.active {
  border: 2px solid var(--gold-deep);
  box-shadow: 0 20px 50px rgba(231, 169, 59, 0.2);
}

.road-card.upcoming {
  opacity: 0.75;
}
