:root {
  --lime: #8fd400;
  --lime-bright: #a8e600;
  --lime-dark: #5a9e00;
  --red: #e8222a;
  --red-deep: #b81820;
  --black: #0d0d0d;
  --ink: #1a1a1a;
  --white: #ffffff;
  --cream: #fff8f0;
  --tiktok-cyan: #25f4ee;
  --tiktok-pink: #fe2c55;
  --glow-lime: rgba(168, 230, 0, 0.45);
  --glow-red: rgba(232, 34, 42, 0.35);
  --font-display: "Bangers", cursive;
  --font-body: "Fredoka", sans-serif;
  --font-hand: "Permanent Marker", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Background layers ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(143, 212, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(232, 34, 42, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(37, 244, 238, 0.06), transparent 60%),
    linear-gradient(165deg, #0a1208 0%, #0d0d0d 40%, #120a0c 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 230, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 230, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 75%);
}

.spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2a2a 0%, #0d0d0d 70%);
  box-shadow: inset -4px -6px 12px rgba(0, 0, 0, 0.6), 0 0 20px var(--glow-red);
  animation: floatSpot var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.55;
}

.spot--red {
  background: radial-gradient(circle at 35% 28%, #ff4d55 0%, var(--red) 45%, var(--red-deep) 100%);
  box-shadow: 0 0 24px var(--glow-red), inset -2px -4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.7;
}

@keyframes floatSpot {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(12px, -18px) rotate(8deg) scale(1.05); }
  66% { transform: translate(-8px, 10px) rotate(-5deg) scale(0.95); }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 230, 0, 0.15);
  transition: transform 0.35s ease, background 0.35s ease;
}

.header--hidden {
  transform: translateY(-110%);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
  box-shadow: 0 0 16px var(--glow-lime);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 12px var(--glow-lime); }
  50% { box-shadow: 0 0 28px var(--glow-lime), 0 0 40px var(--glow-red); }
}

.header__name {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--red);
  letter-spacing: 0.02em;
}

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

.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.nav__link:hover {
  background: rgba(168, 230, 0, 0.15);
  color: var(--lime-bright);
  transform: translateY(-1px);
}

.nav__buy {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--tiktok-pink), var(--red));
  color: var(--white);
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(254, 44, 85, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: buyGlow 2.5s ease-in-out infinite;
}

.nav__buy:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 32px rgba(254, 44, 85, 0.55);
}

@keyframes buyGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(254, 44, 85, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(168, 230, 0, 0.35), 0 4px 20px rgba(254, 44, 85, 0.5); }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime-bright);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Ticker ── */
.ticker {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--lime-dark), var(--lime), var(--lime-dark));
  color: var(--black);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--red);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker__item {
  white-space: nowrap;
  padding: 0 40px;
}

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

/* ── Layout ── */
.wrapper {
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tiktok-cyan);
  margin-bottom: 12px;
}

.section__label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--tiktok-cyan);
  box-shadow: 0 0 8px var(--tiktok-cyan);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 20%, var(--lime-bright) 60%, var(--tiktok-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(168, 230, 0, 0.3));
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 120px 24px 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero__content {
  animation: fadeUp 1s ease 0.2s both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(254, 44, 85, 0.15);
  border: 1px solid rgba(254, 44, 85, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tiktok-pink);
  margin-bottom: 20px;
  animation: badgeBounce 2s ease-in-out infinite;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--tiktok-pink);
  border-radius: 50%;
  animation: blink 1.2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero__title {
  font-family: var(--font-hand);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  line-height: 0.95;
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--red),
    6px 6px 0 rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
  position: relative;
}

.hero__title-glitch {
  position: relative;
  display: inline-block;
}

.hero__title-glitch::before,
.hero__title-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.hero__title-glitch::before {
  color: var(--tiktok-cyan);
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.hero__title-glitch::after {
  color: var(--tiktok-pink);
  animation: glitch2 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
}

@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(2px, 2px); }
  93% { transform: translate(-2px, -1px); }
}

.hero__symbol {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lime-bright);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.hero__bio {
  font-size: 1.1rem;
  color: rgba(255, 248, 240, 0.85);
  max-width: 420px;
  margin-bottom: 32px;
  border-left: 3px solid var(--lime);
  padding-left: 16px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn--primary {
  background: linear-gradient(135deg, var(--lime-bright), var(--lime-dark));
  color: var(--black);
  box-shadow: 0 6px 24px var(--glow-lime);
}

.btn--primary:hover {
  box-shadow: 0 10px 36px var(--glow-lime);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--tiktok-cyan);
  box-shadow: 0 0 20px rgba(37, 244, 238, 0.25);
}

.btn img,
.btn svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero__social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.social-icon:hover {
  transform: scale(1.1) rotate(-5deg);
  border-color: var(--lime);
  box-shadow: 0 0 20px var(--glow-lime);
}

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

/* Phone / video frame */
.hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 1s ease 0.5s both;
}

.phone-frame {
  position: relative;
  display: block;
  width: min(320px, 85vw);
  aspect-ratio: 9 / 16;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 2px var(--black),
    0 0 40px var(--glow-lime),
    0 0 80px rgba(254, 44, 85, 0.15),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: phoneFloat 5s ease-in-out infinite;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.phone-frame:hover {
  box-shadow:
    0 0 0 2px var(--black),
    0 0 50px var(--glow-lime),
    0 0 90px rgba(254, 44, 85, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--black);
  border-radius: 20px;
  z-index: 2;
}

.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.phone-actions {
  position: absolute;
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phone-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  animation: actionPop 0.6s ease both;
}

.phone-action:nth-child(1) { animation-delay: 0.8s; }
.phone-action:nth-child(2) { animation-delay: 1s; }
.phone-action:nth-child(3) { animation-delay: 1.2s; }
.phone-action:nth-child(4) { animation-delay: 1.4s; }

.phone-action__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.phone-action:hover .phone-action__icon {
  transform: scale(1.15);
  background: rgba(254, 44, 85, 0.3);
}

@keyframes actionPop {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── About ── */
.about {
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__logo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--lime);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-lime);
  animation: aboutFloat 6s ease-in-out infinite;
}

.about__logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(37, 244, 238, 0.1) 100%);
  pointer-events: none;
}

.about__logo-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about__ring {
  position: absolute;
  border: 2px dashed rgba(168, 230, 0, 0.4);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite;
}

.about__ring--1 {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}

.about__ring--2 {
  width: 125%;
  height: 125%;
  top: -12.5%;
  left: -12.5%;
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about__text {
  font-size: 1.05rem;
  color: rgba(255, 248, 240, 0.88);
  line-height: 1.75;
}

.about__text p + p {
  margin-top: 16px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  padding: 8px 16px;
  background: rgba(232, 34, 42, 0.15);
  border: 1px solid rgba(232, 34, 42, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s;
}

.tag:hover {
  transform: scale(1.05);
  background: rgba(168, 230, 0, 0.15);
  border-color: var(--lime);
}

.tag--lime {
  background: rgba(168, 230, 0, 0.12);
  border-color: rgba(168, 230, 0, 0.35);
}

/* ── How to Buy ── */
.howtobuy {
  position: relative;
}

.howtobuy__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 230, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tiktok-cyan), var(--lime), var(--tiktok-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-lime);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 20px var(--glow-red);
}

.step-card__title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--lime-bright);
}

.step-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.55;
}

.howtobuy__cta {
  margin-top: 48px;
  text-align: center;
}

.howtobuy__cta .btn {
  font-size: 1.1rem;
  padding: 16px 36px;
}

.howtobuy__cta .btn img {
  width: 80px;
  height: auto;
}

/* ── Chart ── */
.chart {
  position: relative;
}

.chart__frame {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(168, 230, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: var(--ink);
  min-height: 500px;
  position: relative;
}

.chart__frame iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

/* ── Join Us ── */
.joinus {
  position: relative;
  padding-bottom: 100px;
}

.joinus__banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 3px solid var(--lime);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 50px var(--glow-lime);
  animation: bannerGlow 4s ease-in-out infinite;
}

.joinus__banner img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes bannerGlow {
  0%, 100% { box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-lime); }
  50% { box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 60px var(--glow-red); }
}

.joinus__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 230, 0, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.joinus__heading {
  font-family: var(--font-hand);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  text-shadow: 2px 2px 0 var(--red);
  margin-bottom: 12px;
}

.joinus__sub {
  color: rgba(255, 248, 240, 0.75);
  margin-bottom: 28px;
  font-size: 1rem;
}

.joinus__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.join-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  font-weight: 600;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.join-link:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.join-link img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.joinus__contract {
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  border: 1px dashed rgba(168, 230, 0, 0.3);
}

.joinus__contract-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 10px;
}

.joinus__contract-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.joinus__contract code {
  flex: 1;
  font-size: 0.8rem;
  word-break: break-all;
  color: rgba(255, 248, 240, 0.85);
  font-family: "Courier New", monospace;
}

.copy-btn {
  padding: 10px 16px;
  background: var(--lime);
  color: var(--black);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
}

.copy-btn:hover {
  transform: scale(1.05);
  background: var(--lime-bright);
}

.copy-btn.copied {
  background: var(--tiktok-cyan);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 32px 24px 48px;
  border-top: 1px solid rgba(168, 230, 0, 0.1);
  color: rgba(255, 248, 240, 0.45);
  font-size: 0.85rem;
}

.footer__paw {
  font-size: 1.5rem;
  margin-bottom: 8px;
  animation: pawWiggle 2s ease-in-out infinite;
}

@keyframes pawWiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
  }

  .hero__bio {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 3px solid var(--lime);
    padding-left: 0;
    padding-top: 16px;
  }

  .hero__actions {
    justify-content: center;
  }

  .phone-actions {
    right: -40px;
  }

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

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

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 230, 0, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s, opacity 0.35s;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link,
  .nav__buy {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .ticker {
    top: 76px;
  }

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

  .phone-actions {
    display: none;
  }

  .chart__frame iframe {
    height: 420px;
  }
}
