/* ========================================
   SUPERTEAM USA — STYLES
   ======================================== */

:root {
  --bg: #06060f;
  --bg-alt: #0a0a1a;
  --surface: #111127;
  --surface-hover: #1a1a3a;
  --border: rgba(255, 255, 255, 0.06);
  --text: #f0f0f5;
  --text-dim: #8888aa;
  --text-muted: #555570;
  --accent: #14f195;
  --accent-dim: rgba(20, 241, 149, 0.15);
  --accent-glow: rgba(20, 241, 149, 0.3);
  --purple: #9945ff;
  --purple-dim: rgba(153, 69, 255, 0.15);
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes grid-fade {
  0% { opacity: 0; }
  50% { opacity: 0.03; }
  100% { opacity: 0; }
}

/* ========================================
   NAV
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(6, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--white);
}

.btn-nav {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 8px 20px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.2s !important;
}

.btn-nav:hover {
  background: #11d584 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  font-size: 16px;
  color: var(--text-dim);
  padding: 8px 0;
}

.mobile-menu.open {
  display: flex;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: url('hero-bg.jpg') center center / cover no-repeat;
  background-color: var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-fade 8s ease infinite;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-dim) 0%, rgba(153, 69, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease infinite;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  border: 1px solid rgba(20, 241, 149, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
}

.accent {
  background: linear-gradient(135deg, var(--accent), #9945ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #11d584;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
  border-radius: 12px;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ========================================
   ABOUT GRID
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-card {
  background: var(--bg);
  padding: 48px 32px;
  transition: background 0.3s;
}

.about-card:hover {
  background: var(--surface);
}

.card-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 12px;
  background: var(--accent-dim);
  border-radius: 6px;
  display: inline-block;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ========================================
   OFFERS GRID
   ======================================== */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  border-color: rgba(20, 241, 149, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.offer-featured {
  border-color: rgba(20, 241, 149, 0.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(20, 241, 149, 0.03) 100%);
}

.offer-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.offer-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ========================================
   SCROLLING LOGO MARQUEE
   ======================================== */

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.logo-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 15s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.marquee-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-logo:hover {
  opacity: 1;
}

.marquee-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.marquee-logo span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dim);
}

/* ========================================
   EARN SECTION — LIVE FEED
   ======================================== */

.section-accent {
  background: linear-gradient(135deg, rgba(20, 241, 149, 0.03) 0%, rgba(153, 69, 255, 0.03) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.earn-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 32px;
}

.earn-header-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.earn-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}

.earn-header-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.earn-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.earn-stat span {
  font-size: 13px;
  color: var(--text-muted);
}

.earn-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--surface);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  border: 1px solid var(--border);
}

.earn-tab {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.earn-tab:hover {
  color: var(--text);
}

.earn-tab.active {
  background: var(--accent);
  color: var(--bg);
}

.earn-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.earn-loading {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  font-size: 14px;
}

.earn-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
}

.earn-item:hover {
  border-color: rgba(20, 241, 149, 0.15);
  transform: translateX(4px);
  background: var(--surface-hover);
}

.earn-item-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg);
}

.earn-item-info {
  min-width: 0;
}

.earn-item-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.earn-item-sponsor {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.earn-item-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.earn-item-type.bounty {
  color: var(--purple);
  background: var(--purple-dim);
}

.earn-item-type.project {
  color: #4da6ff;
  background: rgba(77, 166, 255, 0.15);
}

.earn-item-type.hackathon {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.15);
}

.earn-item-type.grant {
  color: var(--accent);
  background: var(--accent-dim);
}

.earn-item-deadline {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.earn-item-deadline.urgent {
  color: #ff6b6b;
}

.earn-item-reward {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  white-space: nowrap;
  text-align: right;
  min-width: 80px;
}

.earn-item-reward .token {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.earn-footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   EVENTS
   ======================================== */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: rgba(20, 241, 149, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.event-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg);
}

.event-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-date-badge {
  background: var(--accent);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.event-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-location svg {
  flex-shrink: 0;
}

.event-past {
  opacity: 0.5;
}

.events-footer {
  margin-top: 32px;
}

/* ========================================
   JOBS
   ======================================== */

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .jobs-grid { grid-template-columns: 1fr; }
}

.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
}

.job-card:hover {
  border-color: rgba(20, 241, 149, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.job-featured {
  border-color: rgba(20, 241, 149, 0.15);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(20, 241, 149, 0.03) 100%);
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.job-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.job-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.job-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.job-company {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.job-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.job-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.jobs-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   TEAM
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
}

.team-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.team-avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-social {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.team-social:hover {
  color: var(--accent);
}

/* ========================================
   CTA
   ======================================== */

.section-cta {
  text-align: center;
  background: var(--bg-alt);
  padding: 140px 0;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-logo {
  height: 28px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }

  .section {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .solana-grid {
    grid-template-columns: 1fr 1fr;
  }

  .earn-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .earn-item {
    grid-template-columns: auto 1fr auto;
  }

  .earn-item-deadline {
    display: none;
  }

  .earn-item-type {
    display: none;
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 48px;
  }

  .section-cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 24px 16px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .solana-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }
}
