@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@400;500;600;700;800&family=Special+Elite&display=swap');

:root {
  --ink: #0a0f18;
  --ink-2: #111c2d;
  --navy: #1b2e4b;
  --agency: #2f4e69;
  --olive: #6f8760;
  --olive-2: #829776;
  --file: #d7d0bf;
  --file-2: #c7bfad;
  --line: #0b0d11;
  --alert: #b7382f;
  --text-main: #f1f4fa;
  --text-soft: #cdd6e2;
  --text-dark: #23272f;
  --shadow: 0 12px 0 rgba(0, 0, 0, 0.28);
  --radius-lg: 26px;
  --radius-md: 18px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'Special Elite', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: #05080f;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.global-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(180deg, rgba(8, 13, 20, 0.72), rgba(8, 13, 20, 0.92)),
    url('assets/background.png');
  background-size: cover;
  background-position: center;
}

.global-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: 0.75rem 1rem;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(4, 7, 12, 0.78);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
  max-width: 1260px;
  margin: 0 auto;
  border: 2px solid rgba(209, 220, 239, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 25, 39, 0.95), rgba(11, 18, 29, 0.95));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-seal {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(231, 199, 94, 0.85);
  background: #0f1a2b;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.4px;
}

.brand-ticker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #94a8c8;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: #e9eef8;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.15rem;
  transition: border-color 0.2s ease;
}

.nav-links a:hover {
  border-color: #89a55f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 12px;
  border: 2px solid #0d131d;
  background: linear-gradient(180deg, #87a063, #6f8452);
  color: #07090e;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.62rem 0.95rem;
  text-align: center;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  background: linear-gradient(180deg, #d6deeb, #b8c5d8);
  color: #10151f;
}

.btn-small {
  padding: 0.54rem 0.78rem;
  font-size: 0.82rem;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 2px solid rgba(209, 220, 239, 0.35);
  background: #111b2b;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: #f2f6ff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  max-width: 1260px;
  margin: 0.55rem auto 0;
  border-radius: 14px;
  border: 2px solid rgba(209, 220, 239, 0.35);
  background: rgba(11, 18, 29, 0.96);
  display: none;
  gap: 0.4rem;
  padding: 0.7rem;
}

.mobile-menu.active {
  display: grid;
}

.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5edf9;
  padding: 0.2rem 0.1rem;
}

.intel-strip {
  position: sticky;
  top: 92px;
  z-index: 180;
  border-top: 2px solid rgba(130, 151, 118, 0.75);
  border-bottom: 2px solid rgba(130, 151, 118, 0.75);
  background: linear-gradient(180deg, rgba(19, 34, 28, 0.92), rgba(15, 27, 22, 0.92));
  overflow: hidden;
  height: 36px;
}

.intel-track {
  display: flex;
  gap: 2.3rem;
  white-space: nowrap;
  width: max-content;
  min-width: 100%;
  align-items: center;
  height: 100%;
  padding: 0 0.8rem;
  animation: ticker 28s linear infinite;
}

.intel-track span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #d6dfcd;
}

main {
  padding: 1.2rem 1rem 3rem;
}

.section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 3.2rem 2rem;
  border: 2px solid rgba(190, 203, 224, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 20, 32, 0.9), rgba(8, 13, 21, 0.92));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  scroll-margin-top: 132px;
}

.section + .section {
  margin-top: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.section-head {
  max-width: 780px;
  margin-bottom: 1.25rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.5px;
  color: #000000;
  background: linear-gradient(180deg, #c9d7b5, #a9bc93);
  border: 2px solid #2e3f2c;
  border-radius: 8px;
  padding: 0.24rem 0.5rem;
  margin-bottom: 0.55rem;
}

.section-head .eyebrow {
  color: #000000 !important;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: var(--font-display);
  letter-spacing: 0.6px;
  font-size: clamp(2.5rem, 6.8vw, 5rem);
  line-height: 0.95;
}

h1 span {
  color: #9cb680;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  letter-spacing: 0.5px;
  margin-bottom: 0.45rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.4px;
}

.section-head p,
.hero-body {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.hero {
  margin-top: 4.9rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.8rem;
  align-items: center;
}

.hero-sub {
  margin-top: 0.45rem;
  color: #d8e1ed;
  font-size: 1.18rem;
  font-weight: 600;
}

.transmission {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #c7d3e4;
  border-radius: 10px;
  padding: 0.42rem 0.58rem;
  background: rgba(20, 32, 50, 0.5);
}

.hero-metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric-card {
  border: 2px solid rgba(196, 206, 223, 0.34);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 31, 50, 0.9), rgba(11, 21, 35, 0.92));
  padding: 0.7rem;
}

.metric-card h3 {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: #9caec8;
}

.metric-card p {
  margin-top: 0.2rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: #eff5ff;
}

.hero-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-scene {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(194, 208, 232, 0.4);
  box-shadow: var(--shadow);
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.25), rgba(8, 12, 18, 0.62));
  border-radius: 20px;
}

.hero-cutout {
  position: absolute;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.5));
}

.hero-cutout-main {
  width: 58%;
  bottom: 0;
  left: 20%;
}

.hero-cutout-left {
  width: 24%;
  left: -2%;
  bottom: 10%;
}

.hero-cutout-right {
  width: 24%;
  right: -2%;
  bottom: 10%;
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.lore-card {
  border: 2px solid rgba(193, 204, 224, 0.3);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 28, 44, 0.96), rgba(12, 21, 34, 0.96));
  padding: 0.95rem;
}

.lore-step {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #f2f5fa;
  background: rgba(183, 56, 47, 0.8);
  border: 1px solid rgba(255, 219, 215, 0.36);
  border-radius: 999px;
  padding: 0.15rem 0.42rem;
  margin-bottom: 0.35rem;
}

.lore-card p {
  margin-top: 0.35rem;
  color: #c6d1df;
  font-size: 0.96rem;
  line-height: 1.52;
}

.evidence-board {
  border: 2px solid #6d563f;
  border-radius: 20px;
  padding: 1.25rem;
  background-image:
    linear-gradient(180deg, rgba(56, 38, 27, 0.88), rgba(40, 28, 20, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(255, 219, 173, 0.1), transparent 60%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.polaroid-card {
  margin: 0;
  background: #ece5d9;
  border: 2px solid #18130f;
  border-radius: 16px;
  padding: 0.55rem;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.35);
  position: relative;
}

.polaroid-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 16px;
  background: linear-gradient(180deg, rgba(235, 209, 150, 0.8), rgba(198, 167, 111, 0.75));
  border: 1px solid rgba(115, 87, 45, 0.55);
  border-radius: 2px;
}

.polaroid-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(27, 22, 16, 0.4);
}

.polaroid-card figcaption {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: #2f2822;
  margin-top: 0.45rem;
  letter-spacing: 0.2px;
}

.polaroid-a {
  transform: rotate(-2.4deg);
}

.polaroid-b {
  transform: rotate(1.2deg);
}

.polaroid-c {
  transform: rotate(-1.4deg);
}

.polaroid-d {
  transform: rotate(2.1deg);
}

.token-grid,
.roadmap-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.token-card,
.road-card,
.community-card,
.intel-notes,
.radar-panel,
.faq-item,
.launch-cta {
  border: 2px solid rgba(192, 204, 223, 0.31);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 28, 44, 0.96), rgba(12, 21, 34, 0.96));
}

.token-card,
.road-card,
.community-card,
.intel-notes,
.radar-panel {
  padding: 0.9rem;
}

.token-card p,
.road-card li,
.community-card p,
.intel-notes li,
.radar-panel p,
.faq-answer p,
.launch-cta p {
  color: #c7d2e0;
}

.token-card p {
  margin-top: 0.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #edf4ff;
}

.token-card span,
.community-card span {
  margin-top: 0.32rem;
  display: inline-block;
  font-size: 0.82rem;
  color: #9fb0c9;
}

.mono {
  font-family: var(--font-mono);
}

.radar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.radar-display {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(195, 206, 223, 0.35);
  min-height: 350px;
  position: relative;
}

.radar-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.radar-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  backdrop-filter: blur(4px);
  background: rgba(10, 18, 29, 0.88);
}

.intel-notes ul,
.road-card ul {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.3rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: #eff4ff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 0.76rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(194, 205, 223, 0.4);
  background: rgba(23, 37, 58, 0.75);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer p {
  padding: 0 0.9rem 0.85rem;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-item.active .faq-question span {
  background: rgba(111, 135, 96, 0.88);
}

.community-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.community-card {
  transition: transform 0.16s ease;
}

.community-card:hover {
  transform: translateY(-3px);
}

.launch-cta {
  margin-top: 0.85rem;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.launch-cta img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(231, 199, 94, 0.7);
}

.site-footer {
  max-width: 1260px;
  margin: 1.2rem auto 2rem;
  border-radius: 16px;
  border: 2px solid rgba(187, 200, 222, 0.28);
  background: linear-gradient(180deg, rgba(12, 21, 34, 0.95), rgba(8, 14, 24, 0.95));
  padding: 1rem;
  text-align: center;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 2rem;
}

.footer-copy {
  color: #bfccdf;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 290;
  border: 2px solid #0f141f;
  border-radius: 10px;
  background: linear-gradient(180deg, #88a260, #708651);
  color: #0a0d12;
  font-weight: 800;
  padding: 0.42rem 0.55rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

@media (max-width: 1140px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-cutout-main {
    width: 48%;
    left: 26%;
  }

  .token-grid,
  .roadmap-grid,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav-links,
  .nav-wrap > .btn-small {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .section {
    padding: 2.8rem 1.25rem;
  }

  .intel-strip {
    top: 84px;
  }

  .hero {
    margin-top: 4.6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .launch-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 0.55rem 0.55rem;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .intel-strip {
    height: 34px;
  }

  .intel-track span {
    font-size: 0.68rem;
  }

  main {
    padding: 0.9rem 0.55rem 2rem;
  }

  .lore-grid,
  .token-grid,
  .roadmap-grid,
  .community-grid,
  .hero-metrics,
  .evidence-board {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-cutout-main {
    width: 62%;
    left: 20%;
  }

  .hero-cutout-left,
  .hero-cutout-right {
    display: none;
  }

  .section-head p,
  .hero-body {
    font-size: 0.96rem;
  }
}







