@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:ital,wght@0,300;0,400;0,600;1,300&display=swap");

:root {
  --space-black: #03040a;
  --deep-space: #060b18;
  --nebula-dark: #0a1628;
  --star-blue: #4fc3f7;
  --cosmic-blue: #1a6ef5;
  --glow-blue: #00b4ff;
  --accent-orange: #ff6b2b;
  --accent-gold: #ffd700;
  --text-primary: #e8f4fd;
  --text-secondary: #8ab4cc;
  --text-muted: #4a7a96;
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-border: rgba(79, 195, 247, 0.15);
  --card-border-hover: rgba(79, 195, 247, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo 2", sans-serif;
  background: var(--space-black);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* STARS BACKGROUND */
#stars-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle linear infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(3, 4, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(79, 195, 247, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--star-blue);
}

.nav-logo span {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--star-blue);
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--star-blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--cosmic-blue), var(--glow-blue));
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  transition: all 0.3s !important;
  box-shadow: 0 0 18px rgba(0, 180, 255, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 0 28px rgba(0, 180, 255, 0.6);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  z-index: 1;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 50% 60%,
      rgba(26, 110, 245, 0.08) 0%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      var(--space-black) 0%,
      transparent 30%,
      transparent 70%,
      var(--space-black) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--star-blue);
  margin-bottom: 1.8rem;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--star-blue);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

h1.hero-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.title-asteroid {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--star-blue) 50%,
    var(--glow-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.title-sub {
  font-family: "Orbitron", monospace;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--text-secondary);
  display: block;
  margin-top: 0.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--cosmic-blue), var(--glow-blue));
  color: white;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0, 180, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 180, 255, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(79, 195, 247, 0.3);
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(79, 195, 247, 0.1);
  border-color: var(--star-blue);
}

.hero-ca {
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.ca-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
}

.ca-text {
  font-family: "Orbitron", monospace;
  font-size: 0.68rem;
  color: var(--star-blue);
  letter-spacing: 0.05em;
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
  padding: 0;
  line-height: 1;
}
.copy-btn:hover {
  color: var(--star-blue);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  opacity: 0.5;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
}

/* SECTIONS */
section {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--star-blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

/* MISSION STATS */
.stats-bar {
  background: rgba(79, 195, 247, 0.04);
  border-top: 1px solid rgba(79, 195, 247, 0.1);
  border-bottom: 1px solid rgba(79, 195, 247, 0.1);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
}

.stat-number {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--star-blue);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* MISSION CARDS */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.mission-card:hover {
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.card-step {
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(79, 195, 247, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.card-title {
  font-family: "Orbitron", monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--star-blue);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* STORY - LIV */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-images {
  position: relative;
  height: 500px;
}

.story-img-main {
  position: absolute;
  width: 72%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  top: 0;
  left: 0;
}

.story-img-accent {
  position: absolute;
  width: 52%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--space-black);
  outline: 1px solid rgba(79, 195, 247, 0.25);
  bottom: 0;
  right: 0;
}

.story-text {
}

.story-quote {
  background: rgba(79, 195, 247, 0.06);
  border-left: 3px solid var(--star-blue);
  padding: 1.2rem 1.5rem;
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.story-text p {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

/* CHARITY */
.charity-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(26, 110, 245, 0.04),
    transparent
  );
}

.charity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.charity-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.charity-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.charity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.charity-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 0.9rem;
  color: var(--star-blue);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.charity-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* TWEETS */
.tweets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.tweet-embed-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.tweet-embed-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(79, 195, 247, 0.1);
}

.tweet-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cosmic-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tweet-user-info {
}
.tweet-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.tweet-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.tweet-x-icon {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 700;
}

.tweet-body {
  padding: 1rem 1.5rem 1.25rem;
}

.tweet-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.tweet-link-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--star-blue);
  letter-spacing: 0.05em;
}

/* TOKENOMICS */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.token-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.token-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(79, 195, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  background: radial-gradient(
    circle at center,
    rgba(26, 110, 245, 0.1),
    transparent 70%
  );
}

.token-ring::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(79, 195, 247, 0.1);
}

.token-center {
  text-align: center;
  z-index: 1;
}

.token-center .big-num {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--star-blue);
}

.token-center span {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.token-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
}

.token-row-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.token-row-value {
  font-family: "Orbitron", monospace;
  font-size: 0.85rem;
  color: var(--star-blue);
  font-weight: 600;
}

/* HOW TO BUY */
.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.buy-step {
  text-align: center;
  position: relative;
}

.buy-step::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 1.2rem;
  color: rgba(79, 195, 247, 0.3);
  font-size: 1.2rem;
}

.buy-step:last-child::after {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--star-blue);
  margin: 0 auto 1rem;
}

.buy-step h3 {
  font-family: "Orbitron", monospace;
  font-size: 0.78rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.buy-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* SOCIALS */
.socials-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(79, 195, 247, 0.03),
    transparent
  );
}

.socials-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 1.75rem 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.3s;
  min-width: 160px;
}

.social-link:hover {
  border-color: var(--card-border-hover);
  background: rgba(79, 195, 247, 0.06);
  transform: translateY(-4px);
}

.social-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.social-logo-svg {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-name {
  font-family: "Orbitron", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* VIDEO SECTION */
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.video-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse at center,
    rgba(79, 195, 247, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.video-frame-border {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(79, 195, 247, 0.3);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(6, 11, 24, 0.8);
  box-shadow: 0 0 40px rgba(79, 195, 247, 0.08),
    0 0 80px rgba(26, 110, 245, 0.05);
}

.video-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(79, 195, 247, 0.15);
  background: rgba(79, 195, 247, 0.04);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-family: "Orbitron", monospace;
}

.video-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s ease infinite;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(79, 195, 247, 0.15);
  background: rgba(79, 195, 247, 0.03);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.video-yt-link {
  color: var(--star-blue);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.video-yt-link:hover {
  color: white;
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(79, 195, 247, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--star-blue);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.6;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* DIVIDER */
.cosmic-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(79, 195, 247, 0.3),
    rgba(79, 195, 247, 0.15),
    transparent
  );
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-images {
    height: 300px;
  }
  .charity-grid {
    grid-template-columns: 1fr;
  }
  .tweets-grid {
    grid-template-columns: 1fr;
  }
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  .buy-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .buy-step::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-inner {
    padding: 4rem 1.25rem;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.25rem;
  }
  .buy-steps {
    grid-template-columns: 1fr;
  }
}
