:root {
  --bg: #05070d;
  --card: #0f1221;
  --text: #e8ecf5;
  --muted: #a6b0c3;
  --primary: #4f8bff;
  --accent: #8b5dff;
  --border: #1c2033;
  --success: #59e3a7;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 0, 128, 0.22), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(79, 139, 255, 0.24), transparent 40%),
    radial-gradient(circle at 50% 120%, rgba(0, 255, 170, 0.16), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 13, 0.72);
  border-bottom: 1px solid var(--border);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar .logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar .logo span {
  font-family: "Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 22px;
}

.navbar nav a {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar nav {
  display: flex;
  gap: 20px;
}

.navbar nav a {
  padding: 8px 10px;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 8px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  padding: 80px 28px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.hero-orbit {
  position: relative;
  width: clamp(260px, 90vw, 420px);
  max-width: 100%;
  border-radius: 999px;
  padding: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.15), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(139, 93, 255, 0.3), transparent 55%),
    rgba(10, 12, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.hero-img {
  display: block;
  width: clamp(200px, 60vw, 320px);
  max-width: 100%;
  margin: 0 auto;
  border-radius: 999px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  padding: 10px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15), transparent 55%);
}

.hero-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, #4f8bff, #8b5dff, #ff4f9a, #4f8bff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05070d;
  font-family: "Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  animation: spin 18s linear infinite;
}

.hero-bubble {
  position: absolute;
  left: 16px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-bubble-top {
  top: 16px;
}

.hero-bubble-bottom {
  bottom: 16px;
}

.hero-content h1 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.15;
  font-family: "Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subtitle {
  color: var(--muted);
  margin: 0 0 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(79, 139, 255, 0.12);
  border: 1px solid rgba(79, 139, 255, 0.2);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 12px;
  margin: 8px 0 14px;
}

.btn {
  border: 1px solid transparent;
  background: var(--card);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 30px rgba(79, 139, 255, 0.3);
}

.btn.ghost {
  border-color: var(--border);
}

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

.contract {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.02);
}

.contract code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--text);
  letter-spacing: 0.3px;
}

.copy-btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.copy-state {
  opacity: 0;
  color: var(--success);
  transition: opacity 0.25s ease;
  font-weight: 600;
}

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

.hero-card {
  background: linear-gradient(145deg, rgba(79, 139, 255, 0.32), rgba(139, 93, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform-origin: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
}

.stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.label {
  color: var(--muted);
  margin: 0;
}

.value {
  margin: 0;
  font-weight: 700;
}

.card-note {
  margin-top: 16px;
  color: var(--muted);
}

.section {
  padding: clamp(36px, 8vw, 50px) clamp(16px, 6vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}

.section-header h2 {
  margin: 12px 0 10px;
  font-size: 30px;
  font-family: "Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform-origin: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  border-color: rgba(79, 139, 255, 0.45);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.highlight {
  border-color: rgba(79, 139, 255, 0.35);
}

.gradient {
  background: linear-gradient(135deg, rgba(79, 139, 255, 0.14), rgba(139, 93, 255, 0.12));
}

.list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
}

.list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
}

.list.bullets li {
  justify-content: flex-start;
  gap: 8px;
}

.list.bullets li::before {
  content: "•";
  color: var(--primary);
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.timeline {
  border-left: 2px solid var(--border);
  margin-top: 18px;
  padding-left: 18px;
}

.timeline-item {
  position: relative;
  margin-bottom: 18px;
  padding-left: 8px;
}

.timeline-item h3 {
  margin: 0 0 6px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.timeline .dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 4px rgba(79, 139, 255, 0.15);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79, 139, 255, 0.18), rgba(139, 93, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-card h3 {
  margin: 0 0 6px;
}

.cta-card p {
  margin: 0;
  color: var(--muted);
}

.meme-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.meme-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 7, 13, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  transform-origin: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.meme-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meme-card:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.42);
}

.ticker {
  margin-top: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
}

.ticker-inner {
  display: inline-flex;
  gap: 40px;
  padding: 10px 24px;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  font-family: "Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-actions {
  display: flex;
  gap: 10px;
}

.footer {
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 13, 0.9);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .navbar .logo span {
    font-size: 18px;
  }

  .navbar nav {
    position: absolute;
    top: 64px;
    right: 16px;
    flex-direction: column;
    background: rgba(5, 7, 13, 0.95);
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: none;
  }

  .navbar nav.open {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 64px 16px 32px;
    row-gap: 20px;
  }

  .hero-content h1 {
    font-size: 34px;
    letter-spacing: 0.08em;
  }

  .subtitle {
    font-size: 13px;
  }

  .hero-orbit {
    padding: 14px;
  }

  .hero-img {
    max-width: 260px;
    padding: 8px;
  }

  .hero-badge {
    width: 76px;
    height: 76px;
    font-size: 16px;
  }

  .hero-bubble {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .contract {
    flex-wrap: wrap;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section {
    padding: 40px 16px;
  }

  .section-header h2 {
    font-size: 22px;
    letter-spacing: 0.06em;
  }

  .meme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticker-inner {
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 8px 18px;
  }

  .footer {
    padding: 18px 16px;
    gap: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .navbar .logo span {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .navbar nav a {
    letter-spacing: 0.06em;
  }

  .hero {
    padding: 40px 10px 20px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.1;
  }

  .subtitle {
    font-size: 11px;
  }

  .hero-orbit {
    padding: 8px;
    width: clamp(190px, 80vw, 280px);
  }

  .hero-img {
    width: clamp(150px, 68vw, 190px);
  }

  .hero-badge,
  .hero-bubble {
    display: none;
  }

  .hero-card {
    padding: 18px;
    transform: scale(0.85);
    transform-origin: top center;
  }

  .section {
    padding: 26px 10px;
  }

  .section-header h2 {
    font-size: 18px;
  }

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

  .ticker {
    border-radius: 12px;
  }

  .ticker-inner {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 6px 14px;
  }

  .footer {
    padding: 16px 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-height: 760px) and (max-width: 820px) {
  .hero-card {
    display: none;
  }
}

