/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  --accent-primary: #00ffa3;
  --accent-secondary: #03e1ff;
  --accent-gradient: linear-gradient(135deg, #00ffa3 0%, #03e1ff 100%);

  --border-color: #2a2a2a;
  --border-accent: #333333;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for sticky header */
  -webkit-text-size-adjust: 100%; /* Prevent font scaling on iOS */
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 70px; /* Account for fixed header */
}

/* ==========================================
   LAYOUT
   ========================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-dark {
  background-color: var(--bg-secondary);
}

/* Section Separators */
.section-separator {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-separator:first-of-type {
  border-top: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  text-align: center;
  letter-spacing: -0.02em;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  transition: padding 0.3s ease;
}

.header.scrolled .header-content {
  padding: var(--spacing-sm) 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  transition: transform 0.3s ease;
}

.logo-section:hover {
  transform: translateY(-1px);
}

.logo-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.header.scrolled .logo-section::after {
  width: 100%;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon img {
  display: block;
  border-radius: 50%;
}

.logo-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00ffa3 0%, #03e1ff 50%, #00ffa3 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.logo-section {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.ticker {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.logo-section:hover .ticker {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.nav {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
  animation: navLinkFadeIn 0.6s ease-out forwards;
}

.nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-link:nth-child(2) {
  animation-delay: 0.15s;
}
.nav-link:nth-child(3) {
  animation-delay: 0.2s;
}
.nav-link:nth-child(4) {
  animation-delay: 0.25s;
}
.nav-link:nth-child(5) {
  animation-delay: 0.3s;
}
.nav-link:nth-child(6) {
  animation-delay: 0.35s;
}

@keyframes navLinkFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 255, 163, 0.05);
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text-primary);
}

.nav-link:hover::before,
.nav-link:focus::before {
  width: 80%;
}

.nav-link:hover::after,
.nav-link:focus::after {
  opacity: 1;
}

.nav-link.active {
  color: var(--accent-primary);
}

.nav-link.active::before {
  width: 100%;
  background: var(--accent-gradient);
}

.nav-link.active::after {
  opacity: 1;
  background: rgba(0, 255, 163, 0.1);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  min-height: 100vh;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 163, 0.03) 0%,
    transparent 50%
  );
  animation: heroGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(10%, 10%) scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
  padding: var(--spacing-xl) 0;
}

.hero-logo {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.6s ease-out;
}

.hero-logo img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.hero-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00ffa3 0%, #03e1ff 50%, #00ffa3 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-logo::after {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .hero-logo::after {
    width: 100px;
    height: 100px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff 0%, #00ffa3 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.4;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl) auto;
}

.hero-socials {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-xl);
  animation: fadeInUp 1s ease-out;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-link:hover,
.social-link:focus {
  background: var(--accent-gradient);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 255, 163, 0.3);
}

.social-link:active {
  transform: translateY(-3px) scale(1.05);
}

.social-link svg {
  transition: transform 0.3s ease;
}

.social-link img {
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: var(--radius-sm);
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
}

.social-link:hover svg,
.social-link:hover img {
  transform: scale(1.1);
}

.social-link:hover img {
  filter: none;
}

/* Hero Contract Address */
.hero-contract {
  position: relative;
  margin: var(--spacing-md) auto;
  max-width: 500px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-contract-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

.hero-contract-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  background: linear-gradient(
    135deg,
    rgba(0, 255, 163, 0.12),
    rgba(3, 225, 255, 0.12)
  );
  border: 2px solid transparent;
  border-radius: 9999px;
  padding: var(--spacing-sm) var(--spacing-md);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 163, 0.2),
    inset 0 0 20px rgba(0, 255, 163, 0.1);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-contract-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    #00ffa3,
    #03e1ff,
    #00ffa3,
    #03e1ff,
    #00ffa3
  );
  background-size: 300% auto;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: shimmer 2s linear infinite;
}

.hero-contract-box::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.01);
  }
}

.hero-contract-address {
  font-family: "Courier New", monospace;
  font-size: 0.6875rem;
  color: var(--accent-primary);
  background: none;
  border: none;
  padding: 0;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-copy-btn {
  background-color: rgba(0, 255, 163, 0.05);
  border: 1px solid rgba(0, 255, 163, 0.3);
  border-radius: var(--radius-sm);
  padding: 4px;
  color: var(--accent-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-copy-btn:hover,
.hero-copy-btn:focus {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
}

.hero-copy-btn:active {
  transform: scale(1.05);
}

.hero-copy-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.875rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 25px rgba(0, 255, 163, 0.4);
}

.hero-copy-feedback.show {
  opacity: 1;
}

/* ==========================================
   TOKEN STATS SECTION
   ========================================== */

.token-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.token-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 163, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(3, 225, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.token-section .container {
  position: relative;
  z-index: 1;
}

.token-section .section-title {
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.6s ease-out;
}

/* Token Dashboard Layout */
.token-dashboard {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
  .token-dashboard {
    gap: var(--spacing-lg);
  }
}

/* Primary Stats Row */
.primary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .primary-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
}

/* Contract Address Box */
.contract-box {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 163, 0.05),
    rgba(3, 225, 255, 0.05)
  );
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.contract-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.contract-address-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.contract-address {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  color: var(--accent-primary);
  background-color: var(--bg-card);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  word-break: break-all;
}

.copy-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  border-color: var(--accent-primary);
  transform: scale(1.1);
}

.copy-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.copy-feedback.show {
  opacity: 1;
}

/* Stat Cards */
.stat-card {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card-primary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 40px rgba(0, 255, 163, 0.15);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-top: auto;
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 2rem;
  }
}

.stat-change {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 255, 163, 0.1);
}

.stat-change.positive {
  color: #00ffa3;
}

.stat-change.negative {
  color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.stat-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Fees Section */
.fees-section {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  position: relative;
  overflow: hidden;
}

.fees-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.fees-section:hover::before {
  transform: scaleX(1);
}

.fees-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.fees-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.fees-title {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.lp-bot-status {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.lp-bot-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px rgba(0, 255, 163, 0.6);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.lp-bot-status-text {
  font-weight: 500;
  color: var(--accent-primary);
}

.fees-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.fees-total-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.fees-total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

@media (min-width: 1024px) {
  .fees-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }
}

.fee-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.fee-card:hover {
  border-color: var(--accent-primary);
}

.fee-pool-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.fee-pool-info:hover {
  opacity: 0.8;
}

.pool-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fee-pool-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.fee-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.fee-status {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--spacing-xs) var(--spacing-sm);
  background-color: rgba(102, 102, 102, 0.1);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: var(--spacing-xs);
}

@media (min-width: 1024px) {
  .fee-amount {
    font-size: 1.25rem;
  }
}

/* ==========================================
   CORE PRINCIPLES & BENEFITS (COMBINED)
   ========================================== */

.principles-benefits-section {
  position: relative;
  overflow: hidden;
}

.principles-benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 163, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(3, 225, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.principles-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  background-color: transparent;
}

.principle-item:last-child {
  border-bottom: none;
}

.principle-item:nth-child(1) {
  animation-delay: 0.1s;
}

.principle-item:nth-child(2) {
  animation-delay: 0.15s;
}

.principle-item:nth-child(3) {
  animation-delay: 0.2s;
}

.principle-item:nth-child(4) {
  animation-delay: 0.25s;
}

.principle-item:nth-child(5) {
  animation-delay: 0.3s;
}

.principle-item:nth-child(6) {
  animation-delay: 0.35s;
}

.principle-item:nth-child(7) {
  animation-delay: 0.4s;
}

.principle-item:nth-child(8) {
  animation-delay: 0.45s;
}

.principle-item:nth-child(9) {
  animation-delay: 0.5s;
}

.principle-item:nth-child(10) {
  animation-delay: 0.55s;
}

.principle-item:hover {
  background-color: rgba(0, 255, 163, 0.03);
  padding-left: var(--spacing-xl);
}

.principle-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.principle-marker svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.principle-item:hover .principle-marker,
.principle-item:hover .principle-marker svg {
  color: var(--accent-primary);
}

.principle-item:hover .principle-marker {
  transform: scale(1.1);
}

.principle-content {
  flex: 1;
}

.principle-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
}

.principle-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 1024px) {
  .principles-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-item {
    border-right: 1px solid var(--border-color);
  }

  .principle-item:nth-child(even) {
    border-right: none;
  }

  .principle-item:nth-child(9),
  .principle-item:nth-child(10) {
    border-bottom: none;
  }
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.step-card:nth-child(1) {
  animation-delay: 0.2s;
}

.step-card:nth-child(2) {
  animation-delay: 0.4s;
}

.step-card:nth-child(3) {
  animation-delay: 0.6s;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 255, 163, 0.2);
}

.step-card:active {
  transform: translateY(-2px);
}

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

.step-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  line-height: 1;
  transition: all 0.3s ease;
  display: inline-block;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(0, 255, 163, 0.6));
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.result-box {
  background-color: var(--bg-card);
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0%,
  100% {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 rgba(0, 255, 163, 0);
  }

  50% {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.3);
  }
}

.result-box p {
  font-size: 1.125rem;
  margin: 0;
}

/* ==========================================
   PHASED EXECUTION - TIMELINE ROADMAP
   ========================================== */

.timeline-container {
  position: relative;
  padding-left: var(--spacing-2xl);
}

@media (min-width: 769px) {
  .timeline-container {
    padding-left: var(--spacing-3xl);
  }
}

/* Timeline Vertical Line */
.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform-origin: top;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 768px) {
  .timeline-line {
    width: 3px;
    left: 20px;
  }
}

@media (min-width: 769px) {
  .timeline-line {
    left: 30px;
  }
}

.timeline-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--accent-primary) 0%,
    var(--accent-secondary) 50%,
    var(--accent-primary) 100%
  );
  transform-origin: top;
  transform: scaleY(0);
  animation: timelineGrow 2s ease-out forwards;
}

@keyframes timelineGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@media (min-width: 769px) {
  .timeline-line {
    left: 30px;
  }
}

/* Phase Block */
.phase-block {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  margin-left: var(--spacing-xl);
  transition: all 0.4s ease;
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

.phase-block:nth-child(2) {
  animation-delay: 0.2s;
}

.phase-block:nth-child(3) {
  animation-delay: 0.4s;
}

.phase-block:nth-child(4) {
  animation-delay: 0.6s;
}

.phase-block:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phase-block:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 5px 30px rgba(0, 255, 163, 0.1);
  transform: translateX(5px);
}

.phase-block:active {
  transform: translateX(2px);
}

.phase-block:last-child {
  margin-bottom: 0;
}

/* Phase Marker (Timeline Dot) */
.phase-marker {
  position: absolute;
  left: -50px;
  top: var(--spacing-lg);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@media (min-width: 769px) {
  .phase-marker {
    left: -60px;
  }
}

.phase-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 3px solid var(--bg-secondary);
  position: relative;
  z-index: 3;
  animation: dotPulse 2s ease-in-out infinite, dotAppear 0.5s ease-out forwards;
  box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.4);
  opacity: 0;
}

@keyframes dotAppear {
  to {
    opacity: 1;
  }
}

.phase-block:nth-child(2) .phase-dot {
  animation-delay: 0.2s, 0.2s;
}

.phase-block:nth-child(3) .phase-dot {
  animation-delay: 0.4s, 0.4s;
}

.phase-block:nth-child(4) .phase-dot {
  animation-delay: 0.6s, 0.6s;
}

.phase-block:nth-child(5) .phase-dot {
  animation-delay: 0.8s, 0.8s;
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 255, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 163, 0);
  }
}

.phase-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-primary);
  opacity: 0.2;
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Stagger pulse animations */
.phase-block:nth-child(2) .phase-pulse {
  animation-delay: 0.2s;
}

.phase-block:nth-child(3) .phase-pulse {
  animation-delay: 0.4s;
}

.phase-block:nth-child(4) .phase-pulse {
  animation-delay: 0.6s;
}

.phase-block:nth-child(5) .phase-pulse {
  animation-delay: 0.8s;
}

.phase-header {
  margin-bottom: var(--spacing-lg);
}

.phase-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  margin-bottom: var(--spacing-sm);
  animation: gradientShift 3s ease infinite;
}

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

  50% {
    background-position: 100% center;
  }
}

.phase-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: var(--spacing-xs);
}

.phase-list {
  list-style: none;
  margin: var(--spacing-md) 0;
}

.phase-list li {
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  position: relative;
  color: var(--text-secondary);
}

.phase-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.inline-list li {
  padding-left: var(--spacing-lg);
  margin-bottom: 0;
}

.phase-intro {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.phase-purpose {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.05rem;
}

.sub-phase {
  margin: var(--spacing-lg) 0;
  padding-left: var(--spacing-lg);
  border-left: 2px solid var(--border-accent);
}

.sub-phase h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--accent-secondary);
}

/* ==========================================
   BENEFITS - WHY THIS MATTERS
   ========================================== */

.benefits-section {
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(0, 255, 163, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(3, 225, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: benefitSlideIn 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}

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

.benefit-card:hover {
  background: linear-gradient(
    135deg,
    var(--bg-card-hover) 0%,
    rgba(34, 34, 34, 0.9) 100%
  );
  border-color: var(--accent-secondary);
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(3, 225, 255, 0.2);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg) translateY(-3px);
  color: var(--accent-secondary);
  background: linear-gradient(
    135deg,
    rgba(0, 255, 163, 0.2),
    rgba(3, 225, 255, 0.2)
  );
  box-shadow: 0 8px 25px rgba(3, 225, 255, 0.3);
}

.benefit-card:hover .benefit-accent {
  opacity: 1;
  transform: scale(1);
}

.benefit-card:active {
  transform: translateY(-4px);
}

/* Benefit Icon */
.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 163, 0.1),
    rgba(3, 225, 255, 0.1)
  );
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  color: var(--accent-primary);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite;
}

.benefit-card:nth-child(1) .benefit-icon {
  animation-delay: 0s;
}

.benefit-card:nth-child(2) .benefit-icon {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) .benefit-icon {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(4) .benefit-icon {
  animation-delay: 0.6s;
}

.benefit-card:nth-child(5) .benefit-icon {
  animation-delay: 0.8s;
}

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

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.1);
}

/* Benefit Accent */
.benefit-accent {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(3, 225, 255, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease;
  pointer-events: none;
  border-radius: 50%;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--accent-secondary);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ==========================================
   BOT SECTION
   ========================================== */

.bot-section {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

@media (min-width: 769px) {
  .bot-section {
    padding: var(--spacing-xl) 0;
  }
}

.bot-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 30%,
      rgba(0, 255, 163, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 70%,
      rgba(3, 225, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.bot-section .container {
  position: relative;
  z-index: 1;
}

/* Bot Hero */
.bot-hero {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 769px) {
  .bot-hero {
    margin-bottom: var(--spacing-xl);
  }
}

.bot-icon-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.bot-status-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.9),
    rgba(200, 0, 0, 0.9)
  );
  color: var(--text-primary);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(0.98);
  }
}

@media (min-width: 769px) {
  .bot-icon-container {
    margin-bottom: var(--spacing-md);
  }
}

.bot-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 163, 0.1),
    rgba(3, 225, 255, 0.1)
  );
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  color: var(--accent-primary);
  position: relative;
  z-index: 2;
  animation: botIconFloat 3s ease-in-out infinite;
}

@media (min-width: 769px) {
  .bot-icon {
    width: 120px;
    height: 120px;
  }
}

@keyframes botIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.bot-pulse {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-primary);
  opacity: 0.2;
  animation: botPulseRing 2s ease-in-out infinite;
}

@media (min-width: 769px) {
  .bot-pulse {
    width: 120px;
    height: 120px;
  }
}

@keyframes botPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.bot-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 769px) {
  .bot-title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-sm);
  }
}

.bot-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .bot-description {
    font-size: 1rem;
  }
}

/* Bot Content */
.bot-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.bot-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

@media (min-width: 769px) {
  .bot-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
  }
}

.bot-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
  display: block;
  text-align: left;
}

.bot-list li {
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-xs);
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .bot-list li {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
  }
}

.bot-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.bot-telegram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--accent-gradient);
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  min-height: 44px;
  width: fit-content;
}

.bot-telegram-btn:hover,
.bot-telegram-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 163, 0.3);
}

.bot-telegram-btn:active {
  transform: translateY(0);
}

.bot-telegram-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(0, 255, 163, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(3, 225, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: faqSlideIn 0.6s ease-out forwards;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.faq-item.active {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 30px rgba(0, 255, 163, 0.15);
  transform: translateY(-2px);
}

.faq-item.active::before {
  transform: scaleX(1);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) var(--spacing-xl);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
  position: relative;
}

.faq-button:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 255, 163, 0.05) 0%,
    transparent 100%
  );
}

.faq-button:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: -2px;
  border-radius: var(--radius-xl);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-primary);
  transition: all 0.3s ease;
  flex: 1;
}

.faq-item.active .faq-question {
  color: var(--accent-secondary);
  transform: translateX(5px);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--accent-primary);
  background: rgba(0, 255, 163, 0.1);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: var(--spacing-md);
}

.faq-icon svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-gradient);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(0, 255, 163, 0.3);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
  padding: 0 var(--spacing-xl);
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 var(--spacing-xl) var(--spacing-xl) var(--spacing-xl);
  opacity: 1;
  animation: faqContentFadeIn 0.4s ease-out 0.2s forwards;
}

@keyframes faqContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer {
  padding-top: var(--spacing-sm);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

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

.faq-detail {
  color: var(--text-muted) !important;
  font-size: 0.9375rem !important;
  font-style: italic;
  padding-left: var(--spacing-md);
  border-left: 2px solid var(--border-color);
  margin-top: var(--spacing-sm) !important;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-xl) 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.footer-links {
  display: flex;
  gap: var(--spacing-xl);
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-link:hover {
  color: var(--accent-primary);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-legal {
  text-align: center;
}

.disclaimer {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ==========================================
   SCROLL PROGRESS INDICATOR
   ========================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 1000;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--accent-gradient);
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
}

/* ==========================================
   LOADING STATES
   ========================================== */

.loading-skeleton {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--bg-card) 0%,
    var(--bg-card-hover) 50%,
    var(--bg-card) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
  min-width: 60px;
  color: transparent;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.stat-value.loading {
  position: relative;
}

.stat-value.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 255, 163, 0.1) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

/* ==========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================== */

/* Focus States */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.nav a:focus-visible {
  outline-offset: 5px;
}

.social-link:focus-visible {
  outline-offset: 4px;
}

.hero-copy-btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-main:focus {
  top: 0;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-progress-bar {
    transition: none;
  }
}

/* ==========================================
   MOBILE APP ENHANCEMENTS
   ========================================== */

/* iOS Safe Area Support */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Touch Optimization */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

a,
button,
.principle-benefit-item,
.step-card,
.faq-item,
.phase-block,
.stat-card,
.fee-card,
.nav-link,
.social-link {
  -webkit-tap-highlight-color: rgba(0, 255, 163, 0.1);
  touch-action: manipulation;
}

/* Prevent double-tap zoom on buttons */
button,
a {
  touch-action: manipulation;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-toggle:hover span,
.nav-toggle:focus span {
  background-color: var(--accent-primary);
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
  /* Base Mobile Adjustments */
  body {
    padding-top: 60px;
    font-size: 16px; /* Prevent iOS zoom on input focus */
  }

  .container {
    padding: 0 var(--spacing-md);
    max-width: 100%;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .section-title {
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Typography Scaling */
  .hero {
    min-height: calc(100vh - 60px);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .hero-logo {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
  }

  .hero-logo img {
    width: 110px;
    height: 110px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    padding: 0 var(--spacing-sm);
  }

  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    padding: 0 var(--spacing-md);
    line-height: 1.5;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    padding: 0 var(--spacing-md);
    max-width: 100%;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
  }

  /* Mobile Navigation */
  .header {
    padding-top: env(safe-area-inset-top);
  }

  .header-content {
    padding: var(--spacing-sm) 0;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: calc(var(--spacing-3xl) + env(safe-area-inset-top))
      var(--spacing-lg) var(--spacing-lg);
    gap: var(--spacing-sm);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 1px solid var(--border-color);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.active {
    right: 0;
  }

  .nav a,
  .nav-link {
    font-size: 1.125rem;
    padding: var(--spacing-md) var(--spacing-sm);
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    text-transform: none;
    letter-spacing: normal;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xs);
    transition: all 0.2s ease;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link:active {
    background-color: rgba(0, 255, 163, 0.1);
    transform: scale(0.98);
  }

  .nav-link.active {
    color: var(--accent-primary);
    background-color: rgba(0, 255, 163, 0.05);
    border-left: 3px solid var(--accent-primary);
  }

  /* Mobile Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Grid Layouts */
  .steps-grid,
  .faq-accordion {
    gap: var(--spacing-sm);
  }

  .principles-benefits-grid {
    grid-template-columns: 1fr;
  }

  .principle-item {
    padding: var(--spacing-md);
  }

  .principle-content h3 {
    font-size: 1rem;
  }

  .principle-content p {
    font-size: 0.875rem;
  }

  /* FAQ Section Mobile */
  .faq-section {
    padding: var(--spacing-xl) 0;
  }

  .faq-intro {
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    text-align: center;
  }

  .faq-accordion {
    gap: var(--spacing-md);
  }

  .faq-item {
    border-radius: var(--radius-lg);
  }

  .faq-button {
    padding: var(--spacing-lg);
    min-height: 60px;
  }

  .faq-question {
    font-size: 1.125rem;
    line-height: 1.4;
    padding-right: var(--spacing-md);
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .faq-content {
    padding: 0 var(--spacing-lg);
  }

  .faq-item.active .faq-content {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
  }

  .faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .faq-detail {
    font-size: 0.9375rem !important;
    line-height: 1.6;
  }

  /* Hero Contract Mobile */
  .hero-contract {
    margin: 0 auto var(--spacing-lg);
    max-width: 100%;
    width: 100%;
    padding: 0 var(--spacing-sm);
  }

  .hero-contract-label {
    font-size: 0.625rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
  }

  .hero-contract-box {
    padding: var(--spacing-sm) var(--spacing-md);
    flex-wrap: nowrap;
    gap: var(--spacing-sm);
    min-height: 52px;
    border-radius: 9999px;
    width: 100%;
    max-width: 100%;
  }

  .hero-contract-box::before {
    border-radius: 9999px;
    padding: 2px;
  }

  .hero-contract-box::after {
    border-radius: 9999px;
  }

  .hero-contract-address {
    font-size: 0.75rem;
    word-break: break-all;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 0;
    overflow-wrap: break-word;
  }

  .hero-copy-btn {
    min-width: 44px;
    min-height: 44px;
    padding: var(--spacing-xs);
    flex-shrink: 0;
    border-radius: 50%;
  }

  .hero-copy-feedback {
    font-size: 0.8125rem;
    margin-top: var(--spacing-sm);
  }

  /* Hero Socials Mobile */
  .hero-socials {
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .social-link {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  /* Token Section Mobile */
  .token-section {
    padding: var(--spacing-xl) 0;
  }

  .primary-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .token-dashboard {
    gap: var(--spacing-xl);
  }

  .stat-card {
    padding: var(--spacing-lg);
    min-height: auto;
    border-radius: var(--radius-lg);
  }

  .stat-value {
    font-size: 2rem;
    line-height: 1.2;
  }

  .stat-label {
    font-size: 0.9375rem;
    margin-top: var(--spacing-xs);
  }

  .stat-subtext {
    font-size: 0.8125rem;
    margin-top: var(--spacing-xs);
  }

  .fees-section {
    margin-top: var(--spacing-xl);
  }

  .fees-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }

  .fees-title-wrapper {
    width: 100%;
  }

  .fees-title {
    font-size: 1.125rem;
  }

  .lp-bot-status {
    font-size: 0.75rem;
    margin-top: var(--spacing-xs);
  }

  .bot-status-badge {
    font-size: 0.5625rem;
    padding: 3px 8px;
    bottom: -6px;
  }

  .fees-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .fees-total {
    align-items: flex-start;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-md);
  }

  .fee-card {
    padding: var(--spacing-lg);
    min-height: auto;
    border-radius: var(--radius-md);
  }

  .fee-pool-info {
    gap: var(--spacing-sm);
  }

  .pool-logo {
    width: 36px;
    height: 36px;
  }

  .fee-pool-name {
    font-size: 0.9375rem;
  }

  .fee-amount {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .fee-status {
    font-size: 0.8125rem;
    padding: var(--spacing-xs);
  }

  .fees-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
  }

  /* Card Optimizations */
  .principle-card,
  .step-card,
  .benefit-card,
  .faq-item {
    padding: var(--spacing-md);
  }

  .phase-block {
    padding: var(--spacing-md);
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
  }

  .timeline-container {
    padding-left: var(--spacing-2xl);
  }

  .timeline-line {
    left: 20px;
    width: 3px;
  }

  .phase-marker {
    left: calc(-1 * var(--spacing-lg) - 20px);
    width: 28px;
    height: 28px;
    top: var(--spacing-md);
  }

  .phase-dot {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .phase-pulse {
    width: 28px;
    height: 28px;
  }

  .phase-header h3 {
    font-size: 1.0625rem;
  }

  .phase-list li {
    font-size: 0.8125rem;
  }

  .phase-purpose {
    font-size: 0.8125rem;
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  /* Bot Section Mobile */
  .bot-section {
    padding: var(--spacing-xl) 0;
  }

  .bot-hero {
    margin-bottom: var(--spacing-xl);
  }

  .bot-icon-container {
    margin-bottom: var(--spacing-lg);
  }

  .bot-icon {
    width: 90px;
    height: 90px;
  }

  .bot-pulse {
    width: 90px;
    height: 90px;
  }

  .bot-title {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
  }

  .bot-description {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
  }

  .bot-content {
    margin-top: var(--spacing-xl);
    max-width: 600px;
  }

  .bot-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
  }

  .bot-list {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }

  .bot-list li {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    padding-left: var(--spacing-md);
  }

  .bot-telegram-btn {
    font-size: 1.125rem;
    padding: var(--spacing-md) var(--spacing-xl);
    min-height: 52px;
    margin-top: var(--spacing-lg);
  }

  .bot-telegram-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Principles & Benefits Mobile */
  .principles-benefits-section {
    padding: var(--spacing-xl) 0;
  }

  .principles-benefits-grid {
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .principle-item {
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
  }

  .principle-marker {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .principle-marker svg {
    width: 24px;
    height: 24px;
  }

  .principle-content h3 {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .principle-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: var(--spacing-xs);
  }

  /* Phases Section Mobile */
  .phases-section {
    padding: var(--spacing-xl) 0;
  }

  .timeline-container {
    padding-left: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    position: relative;
  }

  .timeline-line {
    left: 20px;
    width: 3px;
    z-index: 1;
  }

  .phase-block {
    padding: var(--spacing-md);
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
  }

  .phase-marker {
    left: calc(-1 * var(--spacing-lg) - 20px);
    top: var(--spacing-md);
    width: 28px;
    height: 28px;
    z-index: 3;
  }

  .phase-dot {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .phase-pulse {
    width: 28px;
    height: 28px;
  }

  .phase-header {
    margin-bottom: var(--spacing-sm);
  }

  .phase-header h3 {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .phase-label {
    font-size: 0.6875rem;
  }

  .phase-intro {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
  }

  .phase-list {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
  }

  .phase-list li {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
  }

  .phase-purpose {
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: rgba(0, 255, 163, 0.05);
    border-left: 3px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    line-height: 1.6;
  }

  /* How It Works Mobile */
  .how-it-works-section {
    padding: var(--spacing-xl) 0;
  }

  .steps-grid {
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
  }

  .step-number {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
  }

  .step-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
  }

  .step-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  /* Footer */
  .footer {
    padding: var(--spacing-xl) 0;
    padding-bottom: calc(var(--spacing-xl) + env(safe-area-inset-bottom));
    margin-top: var(--spacing-xl);
  }

  .footer-content {
    gap: var(--spacing-lg);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .footer-link {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.0625rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
  }

  .footer-link:active {
    background-color: rgba(0, 255, 163, 0.1);
    transform: scale(0.98);
  }

  .footer-legal {
    text-align: center;
    margin-top: var(--spacing-lg);
  }

  .disclaimer,
  .copyright {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  /* Compact Spacing */
  :root {
    --spacing-3xl: 2rem;
    --spacing-2xl: 1.5rem;
    --spacing-xl: 1.25rem;
    --spacing-lg: 1.5rem;
    --spacing-md: 1rem;
  }

  body {
    padding-top: 56px;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  /* Typography */
  .hero {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    min-height: calc(100vh - 56px);
  }

  .hero-content {
    padding: 0;
    gap: var(--spacing-sm);
  }

  .hero-logo {
    margin-bottom: var(--spacing-md);
  }

  .hero-logo img {
    width: 100px;
    height: 100px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    padding: 0 var(--spacing-xs);
  }

  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    padding: 0 var(--spacing-sm);
  }

  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  /* Header */
  .header-content {
    padding: var(--spacing-xs) 0;
  }

  .ticker {
    font-size: 1rem;
  }

  .nav {
    width: 85%;
    padding: calc(var(--spacing-2xl) + env(safe-area-inset-top))
      var(--spacing-md) var(--spacing-md);
  }

  /* Hero Contract Small Mobile */
  .hero-contract {
    margin: 0 auto var(--spacing-md);
    max-width: 100%;
    width: 100%;
    padding: 0 var(--spacing-xs);
  }

  .hero-contract-label {
    font-size: 0.5625rem;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.08em;
  }

  .hero-contract-box {
    padding: var(--spacing-sm) var(--spacing-sm);
    gap: var(--spacing-xs);
    min-height: 48px;
    border-radius: 9999px;
    width: 100%;
  }

  .hero-contract-box::before {
    border-radius: 9999px;
    padding: 2px;
  }

  .hero-contract-box::after {
    border-radius: 9999px;
  }

  .hero-contract-address {
    font-size: 0.6875rem;
    line-height: 1.4;
    text-align: center;
    word-break: break-all;
    overflow-wrap: break-word;
    padding: 0;
  }

  .hero-copy-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .hero-socials {
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
  }

  .social-link {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  /* Step Numbers */
  .step-number {
    font-size: 2rem;
  }

  /* Phase Headers */
  .phase-header h3 {
    font-size: 1.125rem;
  }

  .sub-phase h4 {
    font-size: 1rem;
  }

  /* Lists */
  .phase-list li {
    font-size: 0.875rem;
  }

  /* Bot Section Small Mobile */
  .bot-title {
    font-size: 1.625rem;
  }

  .bot-description {
    font-size: 0.9375rem;
  }

  .bot-icon {
    width: 80px;
    height: 80px;
  }

  .bot-pulse {
    width: 80px;
    height: 80px;
  }

  .bot-status-badge {
    font-size: 0.5rem;
    padding: 2px 6px;
    bottom: -4px;
  }

  .lp-bot-status {
    font-size: 0.6875rem;
  }

  .lp-bot-status-dot {
    width: 6px;
    height: 6px;
  }

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

  .bot-list li {
    font-size: 0.9375rem;
  }

  .bot-telegram-btn {
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    min-height: 48px;
  }

  /* Mobile-Optimized Cards */
  .principle-benefit-item {
    padding: var(--spacing-sm);
  }

  .item-icon {
    width: 36px;
    height: 36px;
  }

  .item-title {
    font-size: 1rem;
  }

  .item-description {
    font-size: 0.8125rem;
  }

  .faq-item {
    border-radius: var(--radius-md);
  }

  .faq-button {
    padding: var(--spacing-md) var(--spacing-md);
    min-height: 56px;
  }

  .faq-question {
    font-size: 1.0625rem;
  }

  .faq-content {
    padding: 0 var(--spacing-md);
  }

  .faq-item.active .faq-content {
    padding: 0 var(--spacing-md) var(--spacing-md);
  }

  .faq-answer p {
    font-size: 0.9375rem;
  }

  .step-card {
    padding: var(--spacing-md);
  }

  .stat-card {
    padding: var(--spacing-md);
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .fee-card {
    padding: var(--spacing-md);
  }

  .fee-amount {
    font-size: 1.125rem;
  }

  .fee-status {
    font-size: 0.75rem;
    padding: 6px var(--spacing-xs);
  }

  .fees-total-amount {
    font-size: 1.375rem;
  }

  /* Touch Targets - Ensure all interactive elements are at least 44px */
  .nav a,
  .nav-link,
  .footer-link,
  .hero-copy-btn,
  .faq-button,
  .social-link {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ==========================================
   MOBILE APP POLISH
   ========================================== */

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
  }
}

/* Pull-to-Refresh Prevention & Native Scrolling */
body {
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

/* Smooth momentum scrolling for iOS */
* {
  -webkit-overflow-scrolling: touch;
}

/* Prevent text selection on UI elements */
.nav-link,
.nav-toggle,
.social-link,
.hero-copy-btn,
.faq-button {
  -webkit-user-select: none;
  user-select: none;
}

/* Active States for Touch */
@media (hover: none) and (pointer: coarse) {
  .principle-benefit-item:active,
  .step-card:active,
  .faq-item:active,
  .stat-card:active,
  .fee-card:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  .nav a:active,
  .nav-link:active,
  .footer-link:active {
    background-color: rgba(0, 255, 163, 0.15);
    transform: scale(0.98);
  }

  .social-link:active {
    transform: translateY(-2px) scale(0.95);
  }

  .hero-copy-btn:active {
    transform: scale(0.95);
  }

  .faq-button:active {
    background-color: rgba(0, 255, 163, 0.1);
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  body {
    padding-top: 50px;
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-lg) 0;
  }

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

  .hero-logo img {
    width: 80px;
    height: 80px;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
  }

  .nav {
    padding-top: calc(var(--spacing-xl) + env(safe-area-inset-top));
  }
}

/* ==========================================
   PERFORMANCE OPTIMIZATIONS
   ========================================== */

/* Will-change hints for animated elements */
.hero-logo,
.hero-title,
.stat-card,
.principle-item,
.step-card,
.faq-item {
  will-change: transform;
}

/* GPU acceleration for smooth animations */
.stat-card,
.principle-item,
.step-card,
.faq-item,
.fee-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize image loading */
img {
  loading: lazy;
  decoding: async;
}

/* Reduce repaints on scroll */
.scroll-progress {
  will-change: width;
}
