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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #101827 0%, #020617 55%, #000 100%);
  color: #e5e7eb;
  line-height: 1.6;
}

/* Header and navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  background: conic-gradient(
    from 120deg,
    #22c55e,
    #22d3ee,
    #6366f1,
    #22c55e
  );
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #020617;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.8);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1rem;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.9rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover {
  border-color: #22c55e;
  color: #f9fafb;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 3.5rem 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.1rem);
  margin-bottom: 1rem;
}

.accent {
  color: #22c55e;
}

.hero-tagline {
  max-width: 30rem;
  color: #cbd5f5;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 190px;          /* full poster, just smaller */
  max-width: 100%;
  height: auto;          /* keep aspect ratio, no cropping */
  border-radius: 1rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.9);
}

/* Buttons */

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out,
    background 0.1s ease-out, border-color 0.1s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #22c55e, #22d3ee);
  color: #020617;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.5);
}

.btn.secondary {
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.7);
}

.btn.secondary:hover {
  border-color: #22c55e;
}

/* Generic sections */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 34rem;
  color: #cbd5f5;
  margin-bottom: 1.75rem;
}

/* Bot cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card.bot {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.25rem;
  padding: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.9);
}

.bot-image {
  display: block;
  margin: 0 auto 0.6rem auto;
  width: 100%;
  max-width: 260px;      /* cap width, height auto */
  height: auto;          /* keep full image, no cropping */
  border-radius: 0.9rem;
  background: #020617;
}

.card.bot h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.bot-role {
  font-size: 0.9rem;
  color: #a5b4fc;
  margin-bottom: 0.7rem;
}

.bot-stats {
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.bot-stats li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.1rem;
}

.bot-stats span {
  color: #9ca3af;
}

.bot-desc {
  font-size: 0.88rem;
  color: #e5e7eb;
}

/* Arena section */

.section-arena {
  background: radial-gradient(
    circle at top,
    rgba(52, 211, 153, 0.08),
    transparent 60%
  );
  border-radius: 2rem;
  border: 1px solid rgba(52, 211, 153, 0.4);
  margin-top: 2rem;
}

.arena-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.arena-graphic {
  display: flex;
  justify-content: center;
}

.arena-ring {
  width: 220px;
  height: 220px;
  border-radius: 1.8rem;
  border: 2px solid rgba(148, 163, 184, 0.6);
  box-shadow: inset 0 0 18px rgba(34, 197, 94, 0.35);
  position: relative;
  background: radial-gradient(
    circle at center,
    rgba(148, 163, 184, 0.18),
    transparent 70%
  );
}

.arena-hazard {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
  position: absolute;
}

.hazard-1 {
  top: 24px;
  left: 30px;
}

.hazard-2 {
  bottom: 28px;
  right: 36px;
}

.hazard-3 {
  top: 90px;
  right: 90px;
}

.arena-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.arena-text ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.arena-text li {
  margin-bottom: 0.25rem;
}

.arena-note {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Plushy section */

.section-plushy {
  padding-bottom: 4rem;
}

.plushy-card {
  background: linear-gradient(
    145deg,
    rgba(30, 64, 175, 0.7),
    rgba(5, 150, 105, 0.8)
  );
  border-radius: 2rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.9);
}

.plushy-text h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.plushy-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.75rem 0 1.3rem;
}

.plushy-cta .coming-soon {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tiny-text {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #e5e7eb;
}

.plushy-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.plushy-image {
  width: 170px;          /* smaller plushy, full image */
  max-width: 100%;
  height: auto;
  border-radius: 1.3rem;
  display: block;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

/* Footer */

.site-footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.9);
}

/* Responsive */

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

  .hero-art {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-image {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav {
    display: flex;
    width: 100%;
  }

  .main-nav a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .arena-layout,
  .plushy-card {
    grid-template-columns: 1fr;
  }

  .plushy-card {
    text-align: left;
  }

  .plushy-art {
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 2.4rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .section {
    padding-inline: 1rem;
  }
}
