:root {
  --bg: #05080f;
  --panel: #0c1220;
  --panel-2: #10192b;
  --text: #ecf3ff;
  --muted: #9bb0d3;
  --line: #1c2b48;
  --accent: #79b9ff;
  --accent-2: #4f7dff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 15% 0%, #0f1f3d 0%, var(--bg) 45%);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(121, 185, 255, 0.18);
  border-top: 1px solid rgba(121, 185, 255, 0.1);
  background: rgba(8, 16, 31, 0.88);
}

.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  animation: ticker-slide 26s linear infinite;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(100deg, rgba(4, 10, 20, 0.88) 0%, rgba(4, 10, 20, 0.58) 42%, rgba(4, 10, 20, 0.72) 100%),
    url("./assets/frosty.png");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 15, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(121, 185, 255, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(121, 185, 255, 0.35);
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #031428;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.92rem;
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.5rem);
}

.subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 14px 0 22px;
}

.contract {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.copy-btn {
  margin-left: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 10px;
  padding: 5px 10px;
  cursor: pointer;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.stat-card {
  background: rgba(9, 18, 33, 0.7);
  border: 1px solid rgba(121, 185, 255, 0.24);
  border-radius: 14px;
  padding: 12px 14px;
}

.stat-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.stat-card strong {
  font-size: 1rem;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
}

.section-copy {
  color: var(--muted);
  max-width: 740px;
  margin: 0 0 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 14px;
  padding: 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.token-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #0d172b, #111d35);
  padding: 18px;
}

.token-card h3 {
  margin: 0 0 8px;
}

.token-card p {
  margin: 0;
  color: var(--muted);
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.roadmap-step {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #0f1b30, #0b1323);
  padding: 18px;
}

.roadmap-step span {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.roadmap-step h3 {
  margin: 8px 0;
}

.roadmap-step p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-card {
  min-height: 220px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0b1528, #101f38);
  padding: 16px;
  color: #c3d6f4;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
}

.gallery-card img {
  width: min(160px, 70%);
  justify-self: center;
  align-self: center;
  object-fit: contain;
  transition: transform 220ms ease;
}

.gallery-card p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.art-ice {
  background: radial-gradient(circle at 25% 20%, #1a2f57, #0d1b33 60%);
}

.art-ice img {
  filter: drop-shadow(0 0 18px rgba(130, 190, 255, 0.55)) saturate(1.2);
}

.art-neon {
  background: radial-gradient(circle at 80% 10%, #3e1e7b, #101733 62%);
}

.art-neon img {
  filter: hue-rotate(48deg) saturate(1.4) drop-shadow(0 0 20px rgba(145, 72, 255, 0.5));
}

.art-mono {
  background: linear-gradient(150deg, #171a24, #0f1219);
}

.art-mono img {
  filter: grayscale(1) contrast(1.15) drop-shadow(0 0 16px rgba(255, 255, 255, 0.2));
}

.art-aurora {
  background: radial-gradient(circle at 20% 15%, #0b3b4e, #12253f 45%, #1e2150 100%);
}

.art-aurora img {
  filter: hue-rotate(120deg) saturate(1.45) drop-shadow(0 0 22px rgba(70, 230, 205, 0.45));
}

.art-sunset {
  background: radial-gradient(circle at 80% 25%, #6b2a1d, #2e1f38 60%);
}

.art-sunset img {
  filter: hue-rotate(-42deg) saturate(1.45) drop-shadow(0 0 18px rgba(255, 137, 89, 0.52));
}

.art-polar {
  background: radial-gradient(circle at 60% 20%, #1d436e, #0f1a34 64%);
}

.art-polar img {
  filter: hue-rotate(182deg) saturate(1.5) drop-shadow(0 0 22px rgba(90, 180, 255, 0.5));
}

.links-wrap {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(170deg, #0d1729, #0a1220);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin: 10px 0 2px;
  color: var(--muted);
}

.link-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-panel {
  margin-top: 24px;
  border: 1px solid rgba(121, 185, 255, 0.26);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(12, 24, 45, 0.96), rgba(8, 16, 30, 0.96));
  padding: 22px;
}

.cta-panel h3 {
  margin: 0 0 8px;
}

.cta-panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(121, 185, 255, 0.15);
  padding: 26px 0 34px;
  color: var(--muted);
}

.footer-brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(121, 185, 255, 0.35);
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-grid,
  .gallery-grid,
  .token-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
    background-position: center 20%;
  }

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

  .nav-links {
    display: none;
  }
}
