/* ===== KANCLER COIN — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #06060b;
  --bg-secondary: #0c0c14;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #e8e8ed;
  --text-secondary: #8a8a9a;
  --text-muted: #5a5a6a;
  --accent-gold: #c9a84c;
  --accent-silver: #b8bcc8;
  --accent-green: #4ade80;
  --accent-blue: #60a5fa;
  --accent-purple: #a78bfa;
  --accent-cyan: #22d3ee;
  --glow-gold: rgba(201, 168, 76, 0.15);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #8b6914);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.chart-pair-icon-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.social-icon-img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
}

.social-icon-img-sm {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.nav-social a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-learn-more {
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}

.btn-learn-more:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow-top {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #f0ead6 0%, #c0b896 50%, #8a7d5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Contract Address Box */
.contract-box {
  max-width: 560px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
}

.contract-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: left;
}

.contract-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contract-address {
  font-size: 0.85rem;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  color: var(--text-secondary);
  word-break: break-all;
  text-align: left;
}

.btn-copy {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn-copy.copied {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  color: var(--accent-green);
}

/* Hero Feature Highlights */
.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 2.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  max-width: 560px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature-icon {
  font-size: 1.1rem;
}

.hero-feature-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero-feature-divider {
  width: 1px;
  height: 20px;
  background: var(--border-color);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--border-color);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-sublabel {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 2px;
}

/* ===== SECTION GENERIC ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #e8e8ed 0%, #8a8a9a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ===== ECOSYSTEM CARDS ===== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.eco-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.eco-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

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

.eco-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.eco-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eco-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.eco-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.eco-card-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4px;
}

.badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.badge-status {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  padding: 0;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0); }
}

.badge-status span {
  color: var(--accent-green);
}

.eco-card-stat {
  text-align: right;
}

.eco-card-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.eco-card-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eco-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.eco-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 0.3px;
}

/* ===== TOKEN CHART SECTION ===== */
.chart-section {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.chart-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.chart-pair {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chart-pair-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #8b6914);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  color: #fff;
}

.chart-pair-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.chart-pair-info span {
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.chart-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 500;
}

.chart-live .status-dot {
  width: 8px;
  height: 8px;
}

.chart-body {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.chart-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Animated chart line */
.chart-line-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chart-line-path {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4));
}

.chart-area-path {
  fill: url(#chartGradient);
}

.chart-price-display {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.chart-price-display .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chart-price-display .change {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-green);
  margin-top: 2px;
}

.chart-price-display .period {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== TRANSPARENCY CARDS (below chart) ===== */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.transparency-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s ease;
}

.transparency-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.transparency-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.transparency-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.analytics-list {
  list-style: none;
  margin-top: 1rem;
}

.analytics-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.analytics-list li:last-child {
  border-bottom: none;
}

.analytics-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.analytics-dot.green { background: var(--accent-green); }
.analytics-dot.blue { background: var(--accent-blue); }
.analytics-dot.purple { background: var(--accent-purple); }

/* ===== MISSION SECTION ===== */
.mission {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission-left .section-tag {
  text-align: left;
}

.mission-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #e8e8ed 0%, #8a8a9a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.mission-link:hover {
  color: var(--text-primary);
}

.mission-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-card);
  transition: all 0.3s ease;
  margin-bottom: -1px;
}

.mission-item:first-child {
  border-radius: 12px 12px 0 0;
}

.mission-item:last-child {
  border-radius: 0 0 12px 12px;
}

.mission-item:only-child {
  border-radius: 12px;
}

.mission-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  z-index: 1;
}

.mission-num {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 28px;
}

.mission-item-icon {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.mission-item-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.mission-item-content p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-logo .nav-logo-icon {
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
}

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

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  color: var(--text-secondary);
  border-color: var(--border-hover);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
  line-height: 1.7;
  max-width: 800px;
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 6, 11, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

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

  .nav-social {
    display: none;
  }

  .btn-learn-more {
    display: none;
  }

  .hero {
    padding: 100px 1.25rem 60px;
    min-height: auto;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  /* Feature highlights strip — stay horizontal, just shrink */
  .hero-features {
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    max-width: 100%;
    border-radius: 50px;
  }

  .hero-feature-text {
    font-size: 0.65rem;
  }

  .hero-feature-icon {
    font-size: 0.85rem;
  }

  .hero-feature-divider {
    height: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Stats bar — 2x2 grid */
  .stats-bar {
    flex-wrap: wrap;
    border-radius: 12px;
    margin: 0 1rem;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 1rem 0.75rem;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    height: 30px;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .eco-card {
    padding: 1.25rem;
  }

  .eco-card-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .chart-section {
    padding: 4rem 1.25rem;
  }

  .chart-body {
    height: 220px;
  }

  .chart-price-display .price {
    font-size: 1.5rem;
  }

  .chart-price-display {
    top: 1rem;
    left: 1rem;
  }

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

  .mission {
    padding: 4rem 1.25rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mission-left .section-tag {
    text-align: center;
  }

  .mission-title {
    text-align: center;
  }

  .mission-text {
    text-align: center;
  }

  .mission-link {
    display: flex;
    justify-content: center;
  }

  .mission-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  .footer {
    padding: 2.5rem 1.25rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-disclaimer {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 0.75rem;
    height: 64px;
  }

  .nav-logo span {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .nav-logo-img {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    top: 64px;
  }

  .hero {
    padding: 90px 1rem 50px;
  }

  .hero-tag {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

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

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

  .hero-features {
    gap: 0.5rem;
    padding: 0.6rem 1rem;
  }

  .hero-feature-text {
    font-size: 0.58rem;
  }

  .hero-feature-icon {
    font-size: 0.75rem;
  }

  .hero-feature-divider {
    height: 14px;
  }

  .stats-bar {
    margin: 0 0.75rem;
  }

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

  .stat-label {
    font-size: 0.6rem;
  }

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

  .eco-card-title {
    font-size: 0.95rem;
  }

  .eco-card-stat-value {
    font-size: 0.95rem;
  }

  .chart-body {
    height: 180px;
  }

  .chart-price-display .price {
    font-size: 1.25rem;
  }

  .mission-item {
    padding: 1rem;
  }

  .mission-item-content h3 {
    font-size: 0.85rem;
  }

  .mission-item-content p {
    font-size: 0.75rem;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}
