:root {
  --bg: #0a0e17;
  --panel: #111827;
  --panel-border: #1f2937;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #10b981;
  /* Professional emerald green */
  --accent-2: #06b6d4;
  --accent-3: #8b5cf6;
  --accent-4: #f59e0b;
  --btn: #1e293b;
  --btn-border: #334155;
  --success: #10b981;
  --glow-primary: rgba(16, 185, 129, 0.15);
  --glow-secondary: rgba(6, 182, 212, 0.15);
  --glow-tertiary: rgba(139, 92, 246, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  background: linear-gradient(135deg, var(--bg) 0%, #0f172a 50%, var(--bg) 100%);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  position: relative;
  font-weight: 400;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.scroll-indicator {
  display: none;
}

.site-wrap {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 5px;
  display: block;
  animation: logoZoomOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: center center;
  transition: all 0.3s ease;
}

@keyframes logoZoomOut {
  0% {
    transform: scale(3);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-logo:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.logo-mark {
  color: var(--accent);
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 10px;
}

/* Hero title sizing */
.hero .glitch-title {
  font-size: clamp(30px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tagline {
  color: var(--accent);
  margin: 8px 0 14px;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cta-row {
  display: inline-flex;
  gap: 16px;
  margin-top: 10px;
}

.cta-row .btn {
  padding: 12px 20px;
  font-size: 16px;
}

/* Button Icon Styles */
.btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  /* Makes icons white */
}

.btn-primary .btn-icon {
  filter: brightness(0) invert(1);
  /* White icons for primary button */
}

.btn:hover .btn-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Token Metrics Section */
.section-mobile-metrics {
  display: none;
  /* Hidden by default on desktop */
}

.mobile-quick-stats {
  margin-top: 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: none;
}

/* Main content */
.main {
  display: grid;
  place-items: start center;
  padding: 40px 16px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Sections */
.section {
  padding: 60px 16px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Section rewards */
.section-rewards .intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-rewards .rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.section-rewards .col-left {
  display: grid;
  grid-template-rows: auto auto;
  gap: 24px;
}

.section-rewards .col-right {
  display: flex;
  flex-direction: column;
}

.section-rewards .col-right .section-calculator {
  height: 100%;
}

.section-rewards .col-right .section-calculator .panel {
  height: 100%;
}

.section-rewards .box {
  background: linear-gradient(135deg, var(--panel) 0%, #1f2937 100%);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.03);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.section-rewards .box-title {
  color: var(--accent-2);
  margin: 0 0 3px;
}

.section-rewards .info .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 6px;
}



.benefits-subtitle {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 1px !important;
  line-height: 1.4;
}

/* Reduce spacing for benefits box */
.section-rewards .box.benefits {
  padding: 16px 24px;
}

/* Calculator */
.section-rewards .col-right .panel.calculator {
  max-width: none;
  border: 1px solid var(--panel-border);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.03);
  height: auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--panel) 0%, #1f2937 100%);
  border-radius: 16px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.calc-title {
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: .03em;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.input-affix {
  position: relative;
}

.input-affix input {
  padding-left: 32px !important;
  padding-right: 44px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f1113 0%, #0a0c0e 100%);
  border: 1px solid #2a2d31;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Force override for calculator input spacing */
.section-rewards .col-right .panel.calculator .input-affix input {
  padding-left: 32px !important;
}

.input-affix input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 166, 0.1), 0 0 20px rgba(0, 255, 166, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0a0f0c 0%, #0f1418 100%);
}

.input-affix .prefix,
.input-affix .suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 12px;
  opacity: .9;
}

.input-affix .prefix {
  left: 10px;
}

.input-affix .suffix {
  right: 10px;
}

.scale {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.scale .line {
  position: relative;
  height: 3px;
  background: rgba(34, 197, 94, .25);
  border-radius: 2px;
  overflow: hidden;
}

.scale .line .progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(34, 197, 94, .9), rgba(34, 197, 94, 1), rgba(34, 197, 94, .9));
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.results {
  margin-top: 8px;
  border-top: 1px dashed var(--panel-border);
}

.row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.row .key {
  color: var(--muted);
}

.row .val {
  font-variant-numeric: tabular-nums;
  /* terminal-like alignment */
}

.row .val.emph {
  color: #22c55e;
  font-weight: 800;
}

.row .sub {
  grid-column: 2 / 3;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  text-align: right;
  font-weight: 500;
}

.calc-note {
  margin-top: 10px;
  font-size: 12px;
  color: #aab2b7;
  opacity: .85;
  line-height: 1.4;
}

.infra-link {
  color: #00ff88;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.infra-link:hover {
  color: #00ffaa;
  text-shadow: 0 0 12px rgba(0, 255, 170, 0.6);
  transform: translateY(-1px);
}

/* Why Choose section */
.section-why {
  padding-top: 32px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.why-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: end;
  margin-top: 0;
  margin-bottom: 28px;
}

.why-intro-grid .intro-left {
  align-self: start;
}



.section-why .lead-list {
  margin-top: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-tile.box {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  min-height: 110px;
  background: linear-gradient(135deg, var(--panel) 0%, #0f1418 100%);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-tile .icon {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(34, 197, 94, .45);
  font-weight: 900;
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 16px;
  line-height: 1;
  text-align: center;
}

.why-tile:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.4);
}

/* Restore original tile title colors */
.tile-title {
  margin: 0 0 6px;
  color: var(--accent);
  font-weight: 800;
}

.tile-desc {
  color: var(--muted);
  font-size: 13px;
}

.why-tile.box:hover {
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .12) inset, 0 0 24px rgba(34, 197, 94, .12);
}

/* Ensure INFRA.WALLET and COMMUNITY.OWNED are side by side */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.feature.box {
  background: linear-gradient(135deg, var(--panel) 0%, #0f1418 100%);
  border: 1px solid #16361f;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .03) inset, 0 0 18px rgba(34, 197, 94, .06), 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature.box h3 {
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 800;
}

.feature.box .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 8px;
}

.feature.box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Mobile responsive for feature grid */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Integration Section */
.section-integration {
  padding: 40px 0 80px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(30, 41, 59, 0.02) 100%);
  margin-top: -20px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Force Integration section to full width */
.section-integration,
.section-integration *,
.integration-container,
.integration-container *,
.tabs-container,
.tabs-container * {
  box-sizing: border-box !important;
}

.integration-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100% !important;
  box-sizing: border-box !important;
}

.integration-header {
  text-align: center;
  margin-bottom: 48px;
}

.integration-header .section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Tabs System */
.tabs-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(20px);
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 8px;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.tab-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}



.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.integration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(148, 163, 184, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.card-content {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.card-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.integration-card:hover .card-arrow {
  transform: translateX(4px);
  opacity: 1;
}



/* Coming Soon Styling */
.coming-soon-container {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}



.coming-soon-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
}

.coming-soon-desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
}

.wallets-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wallets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.wallet-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.wallet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}

.wallet-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(148, 163, 184, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.wallet-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.wallet-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.wallet-content {
  flex: 1;
  min-width: 0;
}

.wallet-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.wallet-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.wallet-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.wallet-card:hover .wallet-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* CEX Card Styling */
.cex-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.cex-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}

.cex-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(148, 163, 184, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.cex-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.cex-card .card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cex-card .card-content {
  flex: 1;
  min-width: 0;
}

.cex-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.cex-card .card-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.cex-card .card-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.cex-card:hover .card-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Phantom DEX Card Styling */
.phantom-dex-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.phantom-dex-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}

.phantom-dex-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(148, 163, 184, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.phantom-dex-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.phantom-dex-card .card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.phantom-dex-card .card-content {
  flex: 1;
  min-width: 0;
}

.phantom-dex-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.phantom-dex-card .card-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.phantom-dex-card .card-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.phantom-dex-card:hover .card-arrow {
  transform: translateX(4px);
  opacity: 1;
}



/* Community Section */
.section-community {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
}

.community-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.community-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.community-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(16, 185, 129, 0.6) 100%);
  border-radius: 2px;
}

.community-header .section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 50%, rgba(16, 185, 129, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(16, 185, 129, 0.1);
}

.community-header .section-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 32px 0;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.9;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.community-intro {
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 auto;
  max-width: 800px;
  font-weight: 500;
  opacity: 0.9;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.social-grid::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.social-card:hover::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.social-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  opacity: 0;
  transition: all 0.4s ease;
}

.social-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  z-index: 1;
  position: relative;
}

.social-card:hover .social-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
  transform: scale(1.08);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

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

.social-card:hover .social-icon img {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 16px rgba(16, 185, 129, 0.2));
}

.social-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.social-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.social-desc {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  position: relative;
}

.social-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.social-card:hover .social-title {
  color: var(--accent);
  transform: translateY(-1px);
}

.social-card:hover .social-desc {
  opacity: 1;
  color: var(--text);
}

.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateY(3px) scale(1.1);
}

.social-card:hover .social-arrow::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Mobile responsive for community */
@media (max-width: 768px) {
  .section-community {
    padding: 60px 0;
  }

  .community-container {
    padding: 0 16px;
  }

  .community-header .section-title {
    font-size: 28px;
  }

  .community-header .section-subtitle {
    font-size: 16px;
  }

  .community-intro {
    font-size: 16px;
  }

  .social-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: center;
  }

  .social-card {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-card:hover {
    transform: none;
    box-shadow: none;
    background: none;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-icon img {
    width: 48px;
    height: 48px;
  }

  .social-content {
    display: none;
  }
}

/* Mobile responsive for Get Started section */
@media (max-width: 768px) {
  .section-get-started {
    padding: 60px 0;
  }

  .why-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-intro .sub-header.tertiary {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-tile {
    padding: 24px 20px;
  }

  .why-tile .icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .why-tile .tile-title {
    font-size: 18px;
  }

  .why-tile .tile-desc {
    font-size: 14px;
  }
}

/* Mobile responsive for Contract section */
@media (max-width: 768px) {
  .token-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contract-address-value .address {
    font-size: 11px;
    word-break: break-all;
    line-height: 1.4;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat .value {
    font-size: clamp(20px, 5vw, 26px);
  }

  .stat .label {
    font-size: 11px;
  }
}

/* Mobile responsive for social media icons */
@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon img {
    width: 40px;
    height: 40px;
  }
}

/* Mobile responsive for integration */
@media (max-width: 768px) {
  .site-wrap {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Calculator disclaimer mobile styling */
  .calculator-disclaimer {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* Comparison disclaimer mobile styling */
  .comparison-disclaimer {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }

  .section {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .section-community {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .section-integration {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

@media (max-width: 768px) {
  .section-integration {
    padding: 60px 0;
    width: 100% !important;
    max-width: 100% !important;
  }

  .integration-container {
    padding: 0 12px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .integration-header .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .tabs-container {
    padding: 24px 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .tabs-header {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 32px;
  }

  .tab-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .integration-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .integration-card {
    padding: 24px;
    gap: 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  .card-icon img {
    width: 32px;
    height: 32px;
  }

  .card-title {
    font-size: 18px;
  }

  .coming-soon-container {
    padding: 60px 20px;
  }

  .coming-soon-icon {
    font-size: 48px;
  }

  .coming-soon-title {
    font-size: 20px;
  }
}

/* Tokenomics section */
.section-token {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Solana Distributed Section */
.section-sol-distributed {
  text-align: center;
  padding: 60px 16px;
  margin: 40px auto;
  max-width: 1100px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.section-sol-distributed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sol-distributed-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sol-distributed-left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.audit-software {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.audit-icon {
  width: 120px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
  margin-bottom: -17px;
}

.audit-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

.audit-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 200px;
}

.audit-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.wallet-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.snapshot-btn {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.snapshot-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}





.sol-distributed-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.sol-distributed-title {
  font-size: clamp(56px, 10vw, 84px);
  font-weight: 900;
  color: var(--accent);
  margin: 0;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sol-distributed-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--muted);
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  opacity: 0.9;
}

/* Mobile responsive for two-column layout */
@media (max-width: 768px) {
  .section-sol-distributed {
    padding: 40px 16px;
    margin: 20px auto;
    border-radius: 16px;
  }

  .sol-distributed-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sol-rabbit-image {
    max-height: 250px;
  }

  .sol-distributed-title {
    font-size: clamp(48px, 12vw, 64px);
  }

  .sol-distributed-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    letter-spacing: 1.5px;
  }
}

/* Comparison Chart Section */
.section-comparison {
  padding: 60px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.comparison-subtitle {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.comparison-card {
  background: linear-gradient(135deg, var(--panel) 0%, #1f2937 100%);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  position: relative;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent);
}

.card-header-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 12px;
  opacity: 0.9;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 24px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.img-card .card-title {
  color: var(--accent);
}

.img-card .card-icon {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent);
}

.stocks-card .card-title {
  color: #f59e0b;
}

.stocks-card .card-icon {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.savings-card .card-title {
  color: #ef4444;
}

.savings-card .card-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.card-features li:hover {
  background: rgba(148, 163, 184, 0.03);
  margin: 0 -8px;
  padding: 12px 8px;
  border-radius: 8px;
}

.card-features li:last-child {
  border-bottom: none;
}

/* Modern card enhancements */
.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
}

.comparison-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.03) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 20px;
}

.feature-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  min-width: 22px;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.2s ease;
}

.feature-icon-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}



.feature-icon {
  font-size: 16px;
  font-weight: bold;
  min-width: 20px;
  margin-top: 2px;
}

.img-card .feature-icon {
  color: var(--accent);
}

.stocks-card .feature-icon {
  color: #f59e0b;
}

.savings-card .feature-icon {
  color: #ef4444;
}

.card-features strong {
  color: var(--text);
  font-weight: 600;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    display: grid;
  }

  .comparison-card {
    padding: 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-features li {
    font-size: 13px;
  }
}

.token-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.token-top .contract {
  display: grid;
  gap: 8px;
}

.contract-address {
  margin-bottom: 4px;
}

.contract-address .label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.contract-address-value .address {
  color: var(--text);
  font-size: 13px;
  font-family: 'Courier New', monospace;
  word-break: break-all;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 18px 0;
}

.stat .kicker {
  color: var(--accent-2);
  margin-bottom: 6px;
  letter-spacing: .06em;
}

.stat .value {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 900;
}

.stat .label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.token-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.token-bottom .box {
  background: linear-gradient(135deg, var(--panel) 0%, #0f1418 100%);
  border: 1px solid #16361f;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .03) inset, 0 0 18px rgba(34, 197, 94, .06);
}

.token-bottom .box:hover {
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .12) inset, 0 0 24px rgba(34, 197, 94, .12);
}

.token-bottom .box h3.badge {
  color: var(--accent);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.token-copy {
  color: var(--accent);
  font-weight: 800;
  margin: 6px 0;
  font-size: 16px;
}

/* Mobile responsive for tokenomics section */
@media (max-width: 768px) {
  .token-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .token-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Verified badges - position below contract address */
.verified-badges {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.verified-badges .verified-badge {
  position: static !important;
}

.verified-badge .badge.green {
  font-size: 13px;
  padding: 6px 10px;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .3);
  color: #22c55e;
  border-radius: 6px;
  font-weight: 600;
}

/* Ending section */
.section-ending {
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ending-content {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.ending-title {
  font-size: clamp(1rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--text);
  text-shadow: 0 0 10px rgba(0, 255, 166, 0.4);
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  font-family: 'Courier New', monospace;
}

.typing-text {
  overflow: hidden;
  border-right: 2px solid var(--accent);
  white-space: nowrap;
  animation: typing 4s steps(30, end) forwards, blink-caret 0.75s step-end infinite;
  width: 0;
  max-width: 25ch;
}

.ending-logo {
  animation: float 4s ease-in-out infinite;
}

.ending-img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.ending-cta {
  margin-top: 20px;
}

.btn-ending {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: none;
  border: 2px solid var(--accent);
  cursor: pointer;
}

.btn-ending:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(0, 255, 166, 0.3);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--panel-border);
  text-align: center;
  padding: 24px 16px 60px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.site-footer .social-link {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.site-footer .social-link:hover {
  transform: translateY(-3px);
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}

.site-footer .social-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.site-footer .social-link:hover .social-icon {
  opacity: 1;
}

/* Reveal effects */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1400ms cubic-bezier(0.4, 0, 0.2, 1), transform 1400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1400ms cubic-bezier(0.4, 0, 0.2, 1), transform 1400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Background overlays */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* darken and soften */
  z-index: -1;
}

.grid-overlay {
  /* subtle white square grid */
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  z-index: -1;
  animation: gridPulse 8s ease-in-out infinite;
}

/* Sub headers */
.sub-header {
  color: var(--accent);
  font-size: 16px;
  line-height: 1.5;
  margin: 16px 0;
  font-weight: 500;
}

.sub-header.primary {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sub-header.secondary {
  font-size: 15px;
  opacity: 0.9;
}

.sub-header.tertiary {
  font-size: 14px;
  opacity: 0.8;
}

/* Animations */
@keyframes typing {
  from {
    width: 0ch;
  }

  to {
    width: 25ch;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--accent);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.04;
    transform: translateY(0px);
  }

  50% {
    opacity: 0.08;
    transform: translateY(-2px);
  }
}

@keyframes glitchSkew {
  0% {
    transform: skew(0deg);
  }

  20% {
    transform: skew(0.8deg);
  }

  40% {
    transform: skew(-0.8deg);
  }

  60% {
    transform: skew(0.6deg);
  }

  80% {
    transform: skew(-0.6deg);
  }

  100% {
    transform: skew(0deg);
  }
}

/* Additional responsive */
@media (max-width: 520px) {
  .actions-row {
    grid-template-columns: 1fr;
  }

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

/* Box styles - these were missing and causing sections to look broken */
.box {
  background: linear-gradient(135deg, var(--panel) 0%, #0f1418 100%);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 255, 166, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.box-title {
  color: var(--accent-2);
  margin: 0 0 10px;
  font-weight: 600;
}

.box p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

/* Info box specific styling */
.box.info .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 6px;
}

/* Calculator specific styling */
.calculator {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Contract address styling */
.contract-address .label {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

.contract-address .address {
  font-family: monospace;
  font-size: 14px;
  color: #fff;
  word-break: break-all;
  line-height: 1.3;
}

/* Stats styling */
.stat.box {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: linear-gradient(135deg, var(--panel) 0%, #0f1418 100%);
  border: 1px solid #16361f;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .03) inset, 0 0 18px rgba(34, 197, 94, .06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat.box:hover {
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .12) inset, 0 0 24px rgba(34, 197, 94, .12);
}

.stat .kicker {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.stat .value {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.stat .label {
  font-size: 14px;
  color: var(--accent);
  opacity: 0.8;
}

/* Hidden elements */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {

  /* Mobile hero section - clean and focused with buttons */
  .hero {
    padding: 80px 20px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-inner {
    text-align: center;
    max-width: 100%;
    width: 100%;
  }

  .hero-logo {
    margin: 0 auto 24px;
    width: 90px;
    height: 90px;
  }

  .hero .glitch-title {
    font-size: clamp(32px, 8.5vw, 48px);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .tagline {
    font-size: clamp(13px, 3.8vw, 17px);
    margin-bottom: 64px;
    line-height: 1.3;
    opacity: 0.9;
  }

  /* Mobile button organization - perfectly aligned and uniform sizing */
  .cta-row {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 40px 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row .btn {
    padding: 18px 20px;
    font-size: 15px;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* Hide token metrics in hero section - will show before Automatic Solana Rewards */
  .quick-stats {
    display: none;
  }

  /* Hide mobile token metrics section for cleaner mobile experience */
  .section-mobile-metrics {
    display: none !important;
  }

  /* Stack sections on mobile */
  .section-rewards .intro-grid,
  .section-why .why-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-rewards .rewards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .token-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .token-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Ensure calculator takes full width on mobile */
  .section-rewards .col-right .section-calculator {
    height: auto;
    min-height: auto;
  }

  .section-rewards .col-right .section-calculator .panel {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 480px) {

  /* Ultra-mobile hero section - clean and focused with buttons */
  .hero {
    padding: 70px 15px 50px;
    min-height: 100vh;
  }

  .hero-inner {
    padding: 0 10px;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 36px);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .tagline {
    font-size: clamp(11px, 4vw, 15px);
    margin-bottom: 56px;
    line-height: 1.3;
    opacity: 0.9;
  }

  /* Ultra-mobile button organization - perfectly aligned and uniform sizing */
  .cta-row {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 32px 0;
    padding: 0 8px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row .btn {
    padding: 16px 18px;
    font-size: 14px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* Hide token metrics in hero section - will show before Automatic Solana Rewards */
  .quick-stats {
    display: none;
  }

  /* Hide mobile token metrics section for cleaner ultra-mobile experience */
  .section-mobile-metrics {
    display: none !important;
  }

  .section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: clamp(18px, 6vw, 22px);
    margin-bottom: 15px;
  }

  .lead-list {
    font-size: 14px;
  }

  .box {
    padding: 16px;
  }

  .box-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .input-group input {
    font-size: 14px;
    padding: 10px;
  }

  .results {
    padding: 16px;
  }

  .key {
    font-size: 13px;
  }

  .val {
    font-size: 14px;
  }

  .note {
    padding: 12px;
    font-size: 13px;
  }

  .section-ending {
    padding: 25px 0;
  }

  .ending-content {
    padding: 0 10px;
  }

  .ending-title {
    font-size: clamp(0.8rem, 5vw, 1.3rem);
    margin: 0 0 12px 0;
  }

  .ending-img {
    width: 30px;
    height: 30px;
  }

  .btn-ending {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--btn) 0%, #1e293b 100%);
  border: 1px solid var(--btn-border);
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Panel styles */
.panel {
  max-width: 640px;
  background: linear-gradient(135deg, var(--panel) 0%, #1f2937 100%);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(16, 185, 129, 0.05);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.panel:hover::before {
  opacity: 1;
}

.panel:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.panel-title {
  font-weight: 800;
  margin: 8px 8px 16px;
}

/* Section title */
.section-title {
  margin: 0 0 24px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: none;
  font-size: clamp(24px, 3vw, 32px);
}

/* Lead text */
.lead {
  color: var(--text);
  opacity: 0.9;
  max-width: 800px;
}

.lead-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.lead-list li {
  color: var(--text);
  margin: 0 0 12px;
  font-size: clamp(16px, 2vw, 18px);
  text-shadow: none;
  transition: all 0.2s ease;
  line-height: 1.6;
}

.lead-list li:hover {
  color: var(--accent);
  transform: none;
}

.subhead {
  color: var(--accent-2);
  margin: 20px 0 8px;
}

/* Grid layouts */
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Terminal list */
.terminal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.terminal-list li {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--panel-border);
  padding: 10px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.terminal-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 166, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.terminal-list li .bullet-point {
  display: inline-block;
  width: 14px;
  text-align: center;
  color: #22c55e;
  text-shadow: 0 0 6px rgba(34, 197, 94, .6);
  margin-right: 8px;
}

.terminal-list li:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 255, 166, 0.1);
}

.terminal-list li:hover::before {
  left: 100%;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 16px;
  min-height: 140px;
}



/* Debug: Force button consistency */
.cta-row .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 120px !important;
  padding: 12px 20px !important;
  font-size: 16px !important;
}

/* Debug: Force feature grid layout */
.section-why .feature-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

/* Debug: Force verified badges positioning */
.section-token .verified-badges {
  display: flex !important;
  gap: 6px !important;
  margin-top: 10px !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
}

/* Mobile responsiveness for Why Choose section */
@media (max-width: 768px) {
  .section-why .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .feature {
    margin: 0;
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-tile.box {
    margin: 0;
    width: 100%;
  }
}

/* Mobile responsiveness for Tokenomics section */
@media (max-width: 768px) {
  .verified-badges {
    flex-direction: row !important;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
  }

  .verified-badge {
    margin: 0;
  }

  .verified-badge .badge.green {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* Ultra-mobile responsiveness for Tokenomics section */
@media (max-width: 480px) {
  .contract-address-value .address {
    font-size: 10px;
    word-break: break-all;
    line-height: 1.3;
  }

  .verified-badges {
    gap: 8px;
  }

  .verified-badge .badge.green {
    font-size: 11px;
    padding: 5px 8px;
  }

  .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .stat {
    margin: 0;
    width: 100%;
  }

  .contract.box {
    margin: 0;
    width: 100%;
    position: relative;
  }

  .contract.box .copy-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: #22c55e;
    transition: all 0.2s ease;
    z-index: 10;
    display: block;
    /* Show on all formats since it's not hiding properly */
  }

  .contract.box .copy-button:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.7);
    transform: scale(1.05);
  }

  .contract.box .copy-button:active {
    transform: scale(0.95);
  }

  .contract.box .copy-button svg {
    display: block;
  }
}

/* Mobile responsiveness for the banner */
@media (max-width: 768px) {
  .section-recent-distribution {
    padding: 40px 0;
  }

  .distribution-banner {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
    margin: 0 20px;
  }

  .banner-left {
    min-width: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .distribution-title {
    font-size: 24px;
  }

  .reward-snapshots-btn {
    margin-top: 8px;
    padding: 12px 24px;
    font-size: 13px;
  }

  .banner-right {
    align-items: center;
    width: 100%;
  }

  .financial-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .financial-column {
    padding: 16px;
  }

  .column-value {
    font-size: 18px;
  }
}

/* Simple Comparison Cards Layout */
.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.comparison-card {
  background: linear-gradient(135deg, var(--panel) 0%, #1f2937 100%);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Pagination Dots */
.pagination-dots {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.dot:hover {
  background: rgba(16, 185, 129, 0.6);
  transform: scale(1.1);
}

.dot:active {
  transform: scale(0.95);
}

/* Mobile Layout - Simple and Clean */
@media (max-width: 768px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }

  .pagination-dots {
    display: flex;
  }

  .dot {
    width: 16px;
    height: 16px;
    background: rgba(16, 185, 129, 0.4);
    border: 2px solid rgba(16, 185, 129, 0.2);
    cursor: pointer;
    touch-action: manipulation;
  }

  .dot.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
  }

  .dot:active {
    transform: scale(0.9);
    background: rgba(16, 185, 129, 0.8);
  }

  /* Ensure only first card is visible by default on mobile */
  .comparison-card:not(:first-child) {
    display: none;
  }

  .comparison-card:first-child {
    display: block;
  }
}
