/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000000;
  color: #f7fafc;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse at top, #0a0e27 0%, #000000 50%, #000000 100%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f97316, #facc15);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #facc15, #ef4444);
  top: 40%;
  right: -15%;
  animation-delay: 7s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ef4444, #f97316);
  bottom: -10%;
  left: 30%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 50px) scale(0.9);
  }
  75% {
    transform: translate(40px, 30px) scale(1.05);
  }
}

/* ==========================================
   LAYOUT HELPERS
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(10, 15, 40, 0.5);
  backdrop-filter: blur(10px);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-header {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.section-header h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #facc15, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.section-header p {
  color: #cbd5f5;
  font-size: 1.1rem;
  line-height: 1.7;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ==========================================
   GRID SYSTEM
   ========================================== */
.grid {
  display: grid;
  gap: 2rem;
}

.two-cols {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .two-cols,
  .three-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(250, 204, 21, 0.2);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #f7fafc;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f97316, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.8);
  }
}

.logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5f5;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #facc15, #f97316);
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: #facc15;
}

.nav-list a:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #facc15;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-cta {
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 70px;
    right: 1.5rem;
    background: rgba(10, 15, 40, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(250, 204, 21, 0.3);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-list.nav-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #000000;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(250, 204, 21, 0.6);
  transform: translateY(-2px);
}

.btn-glow {
  animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
  }
  50% {
    box-shadow: 0 6px 30px rgba(250, 204, 21, 0.7);
  }
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #f7fafc;
  border: 2px solid rgba(250, 204, 21, 0.5);
}

.btn-secondary:hover {
  border-color: #facc15;
  background: rgba(15, 23, 42, 1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #f7fafc;
  border: 2px solid rgba(250, 204, 21, 0.5);
}

.btn-outline:hover {
  border-color: #facc15;
  background: rgba(250, 204, 21, 0.1);
}

.btn-xs {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

.full-width {
  width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #facc15;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff, #facc15, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: #cbd5f5;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 35rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.meta-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: #facc15;
}

/* Hero Card */
.hero-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 15, 40, 0.9));
  border-radius: 2rem;
  border: 2px solid rgba(250, 204, 21, 0.3);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #facc15;
  z-index: 2;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.hero-logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f97316, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
  position: relative;
  z-index: 2;
}

.rotating-glow {
  animation: rotatingGlow 3s linear infinite;
}

@keyframes rotatingGlow {
  0% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.6);
  }
  50% {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.6);
  }
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.hero-card p {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-list {
  list-style: none;
  font-size: 0.9rem;
  color: #f7fafc;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-list li {
  padding-left: 0.5rem;
}

.hero-card-footer {
  border-top: 1px dashed rgba(250, 204, 21, 0.3);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.contract-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.contract-address {
  font-family: "Space Grotesk", monospace;
  font-size: 0.75rem;
  word-break: break-all;
  flex: 1;
  color: #cbd5f5;
}

.copy-icon {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0;
}

.copy-icon:hover {
  transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-arrow {
  animation: bounce 2s ease-in-out infinite;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 15, 40, 0.85));
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.card-icon,
.card-icon-large {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-icon-large {
  font-size: 3.5rem;
}

.token-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #f7fafc;
}

.card p {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.card p:last-child {
  margin-bottom: 0;
}

/* Icon List */
.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #cbd5f5;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

/* ==========================================
   TOKENOMICS
   ========================================== */
.token-card {
  text-align: center;
}

.token-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
  background: linear-gradient(135deg, #facc15, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.token-value.small {
  font-size: 0.85rem;
  word-break: break-all;
}

.token-note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #94a3b8;
}

.copy-btn {
  margin: 1rem 0;
}

.token-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.token-link {
  color: #facc15;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.token-link:hover {
  border-color: #facc15;
  background: rgba(250, 204, 21, 0.1);
  transform: translateY(-2px);
}

.separator {
  color: #94a3b8;
}

/* ==========================================
   HOW TO BUY - STEPS
   ========================================== */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Space Grotesk", system-ui, sans-serif;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

.step-content h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
}

.step-content a {
  color: #facc15;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 204, 21, 0.3);
  transition: border-color 0.3s ease;
}

.step-content a:hover {
  border-color: #facc15;
}

.inline-code {
  display: inline-block;
  font-family: "Space Grotesk", monospace;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(250, 204, 21, 0.3);
  margin-top: 0.5rem;
  color: #facc15;
}

/* Highlight Card */
.card-highlight {
  border: 2px solid rgba(250, 204, 21, 0.5);
  background: linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(10, 15, 40, 0.95));
}

/* ==========================================
   ROADMAP
   ========================================== */
.roadmap {
  position: relative;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #facc15, #f97316, #ef4444);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.roadmap-item {
  position: relative;
}

.roadmap-dot {
  position: absolute;
  left: -2.35rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.roadmap-content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(10, 15, 40, 0.7));
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.roadmap-content:hover {
  border-color: rgba(250, 204, 21, 0.6);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.roadmap-phase {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #facc15;
  margin-bottom: 0.5rem;
}

.roadmap-item h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.roadmap-item p {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.7;
}

/* ==========================================
   COMMUNITY
   ========================================== */
.community-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.community-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.community-card h3 {
  margin-bottom: 0.75rem;
}

.community-card p {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin-bottom: 1rem;
}

.community-handle {
  display: inline-block;
  font-size: 0.85rem;
  color: #facc15;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.3);
}

/* ==========================================
   DISCLAIMER
   ========================================== */
.disclaimer-section {
  padding-top: 2rem;
}

.disclaimer-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid rgba(239, 68, 68, 0.3);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 15, 40, 0.85));
}

.disclaimer-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.disclaimer-card p {
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  border-top: 1px solid rgba(250, 204, 21, 0.2);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #facc15;
}

.footer-copy {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.footer-contract {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-contract code {
  font-family: "Space Grotesk", monospace;
  word-break: break-all;
  color: #cbd5f5;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #000000;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(250, 204, 21, 0.6);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
  animation: slideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease 0.4s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Scroll animations */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 900px) {
  .section {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .roadmap {
    padding-left: 2rem;
  }

  .roadmap::before {
    left: 0.5rem;
  }

  .roadmap-dot {
    left: -1.85rem;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}
