:root{
  --bg:#0F1724; 
  --text:#E6EEF8; 
  --primary:#0066FF; 
  --accent:#00D1B2;
}

*{box-sizing:border-box}
body{
  margin:0; font-family:Inter,system-ui,Arial; background:var(--bg); color:var(--text);
  transition:background .35s ease, color .35s ease;
}
.site-header {
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


.brand{display:flex; gap:12px; align-items:center}
#nav-logo{height:36px}
.nav {
  display: flex;
  justify-content: space-between; /* brand left, toggle right */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; /* centers the whole nav */
  padding: 0 24px;
}

/* Brand stays left */
.brand {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

/* Menu stays centered in one row */
.menu {
  flex: 1;
  display: flex;              /* make ul a flex container */
  justify-content: center;    /* center items horizontally */
  align-items: center;        /* align vertically */
  gap: 40px;                  /* spacing between links */
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers logo and text horizontally */
  text-align: center;
}

.hero-right{flex:0 0 360px; display:flex; align-items:center; justify-content:center}
.logo-placeholder{width:140px; height:140px; display:flex; align-items:center; justify-content:center; margin-bottom:16px}

#ip-logo{width:120px; height:120px; animation:spin 8s linear infinite; transform-style:preserve-3d}
@keyframes spin{from{transform:rotateY(0deg)} to{transform:rotateY(360deg)}}
.btn{display:inline-block; padding:12px 20px; border-radius:10px; text-decoration:none; color:var(--text); background:transparent; border:2px solid rgba(255,255,255,0.06); transition:transform .18s ease, box-shadow .18s ease}
.btn.primary{background:var(--primary); color:#fff; border:none; box-shadow:0 6px 18px rgba(0,0,0,0.25)}
.btn.primary:hover{transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,0,0,0.35)}
.signup input[type="email"] {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--accent); /* visible in both modes */
  margin-right: 8px;
  width: 250px;
  background: var(--bg);
  color: var(--text);
}

/* Center all main content */
main {
  max-width: 1000px;   /* keeps content centered */
  margin: 0 auto;      /* centers horizontally */
  padding: 0 24px;     /* breathing room on sides */
}

/* Section spacing and text alignment */
.section {
  padding: 30px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .section {
    padding: 20px 0; /* tighter spacing for mobile */
  }
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.section p, .section ul, .section dl {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

/* Hero rotating logo centering */
.hero {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  text-align: center;
  padding: 80px 24px;
}

.hero h1 {
  font-size: 40px;
  margin: 20px 0;
}

.hero .lead {
  font-size: 18px;
  margin-bottom: 30px;
}

/* FAQ styling */
#faq dl {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

#faq dt {
  font-weight: bold;
  margin-top: 20px;
  color: var(--accent);
}

#faq dd {
  margin-left: 0;
  margin-bottom: 10px;
}

/* Button glow polish */
.btn.primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Theme toggle placeholder (blank, inert) */
#theme-toggle {
  background: transparent;
  border: none;
  color: transparent;   /* hides text */
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: default;      /* no pointer effect */
}

#theme-toggle:hover {
  background: transparent; /* no hover effect */
  color: transparent;
}

#theme-label {
  display: none;        /* hides the label span */
}

.stats {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;    /* center horizontally */
  gap: 20px;              /* spacing between counters */
  margin: 20px 0;
}

.stat {
  text-align: center;
}

.stat .counter {
  font-size: 36px;
  font-weight: bold;
  color: var(--accent);
  display: block;
}

.section {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.reveal {
  opacity: 1;
  transform: scale(1);
}

.roadmap-list {
  text-align: left;       /* align bullets to the left */
  max-width: 800px;       /* keep it neat */
  margin: 20px auto;      /* center the block itself */
  padding-left: 140px;     /* space for bullets */
  line-height: 1.6;
}



.mission-points {
  text-align: center;       /* center text like other content */
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.mission-points p {
  margin-bottom: 15px;
  opacity: 0;               /* hidden state */
  transform: translateY(20px);
}

/* Reveal animation */
.mission-points p.reveal {
  animation: fadeUp 0.6s ease forwards;
}

@media (max-width: 768px) {
  .roadmap-list {
    padding-left: 20px; /* smaller indent for mobile */
  }
}

.mission-list li,
.roadmap-list {
  margin-bottom: 10px;
}

/* Base hidden state */
.mission-list li,
.roadmap-list li {
  opacity: 0;
  transform: translateY(20px);
}

/* Reveal animation */
.mission-list li.reveal,
.roadmap-list li.reveal {
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tokenomics list styling */
.tokenomics-list {
  list-style: none;        /* removes bullets */
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 40px;      /* adjust padding as needed */
  line-height: 1.6;
}

/* Custom indent for Total Supply block */
.tokenomics-indent {
  margin-left: 30px;   /* adjust to taste */
}


/* Custom desktop indent for Tokenomics section */
@media (min-width: 1024px) {
  .tokenomics-list {
    padding-left: 120px; /* adjust to taste */
  }
}

@media (max-width: 768px) {
  .tokenomics-list {
    padding-left: 20px; /* match mobile mission/roadmap */
  }
}

/* Mission list: no bullets + same indent as Tokenomics */
.mission-list {
  list-style: none;       /* removes bullets */
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 40px;     /* base, same as .tokenomics-list */
  line-height: 1.6;
}

/* Inner indent (matches .tokenomics-indent) */
.mission-indent {
  margin-left: 30px;      /* same inner nudge */
}

@media (min-width: 1024px) {
  .mission-list {
    padding-left: 120px;  /* desktop match */
  }
}

@media (max-width: 768px) {
  .mission-list {
    padding-left: 20px;   /* mobile match */
  }
}


.tokenomics-list li {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
}

.tokenomics-list li.reveal {
  animation: fadeUp 0.6s ease forwards;
}

/* Footer connect section */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg);
  color: var(--text);
}

.connect {
  margin-top: 10px;
}

.connect p {
  margin-bottom: 8px;
  font-weight: bold;
}

.social-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--text); /* inherits theme text color */
}

[data-theme="dark"] .social-icon {
  color: #fff; /* force white in dark mode */
}

.social-icon:hover {
  transform: scale(1.2);
}

.menu {
  display: flex;
  justify-content: center;   /* centers menu across width */
  gap: 40px;                 /* spacing between items */
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.menu li {
  display: block; /* let flexbox handle row layout */
}


.nav-link {
  color: var(--text);              /* adapts to theme */
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px; /* smaller padding keeps text on one line */
  white-space: nowrap; /* prevents wrapping */
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  background: var(--accent);       /* accent glow on hover */
}

/* Brand link styled like menu links */
.brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
}

.brand-link:hover {
  color: #fff;
  background: var(--accent);
}


/* Hide hamburger on desktop */
#hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
}

/* Global link styling inside sections */
.section a {
  text-decoration: none;        /* remove underline */
  font-weight: 600;             /* make it stand out */
  transition: color 0.3s ease;  /* smooth hover effect */
}

/* Hover effect */
.section a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Dark mode: greenish accent */
[data-theme="dark"] .section a {
  color: var(--accent); /* #00D1B2 */ /* highlight with accent color */
}


/* Mobile styles */
@media (max-width: 768px) {
  .menu {
    display: none; /* hide menu by default */
    flex-direction: column;
    gap: 20px;
    background: var(--bg);
    position: absolute;
    top: 60px; /* below header */
    left: 0;
    right: 0;
    padding: 20px;
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
    z-index: 1000;
  }

  .menu.open {
    display: flex; /* show when toggled */
    max-height: 300px; /* adjust based on number of links */
  }

  #hamburger {
    display: block; /* show hamburger on mobile */
  }

  /* Custom submit button */
._form .btn.primary,
._form ._submit {
  background-color: #007bff; /* replace with your brand color */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

._form .btn.primary:hover,
._form ._submit:hover {
  background-color: #0056b3; /* darker shade on hover */
}

/* Thank you message styling */
._form-thank-you {
  color: #28a745; /* green success */
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

}

