/* ============================================
   HOODWHALE — style.css
   Premium Meme Coin Landing Page
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #08131E;
  --bg-light: #0d1f2f;
  --card: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.08);
  --primary: #00C805;
  --primary-glow: rgba(0, 200, 5, 0.35);
  --secondary: #18B8FF;
  --secondary-glow: rgba(24, 184, 255, 0.3);
  --text: #FFFFFF;
  --muted: #9CA3AF;
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* ---------- GLASS ---------- */
.glass {
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary {
  background: var(--primary);
  color: #000;
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--primary:hover {
  box-shadow: 0 0 30px var(--primary-glow), 0 0 60px var(--primary-glow);
  transform: translateY(-2px);
}

.btn--primary::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  font-size: 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 20px var(--secondary-glow);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(8, 19, 30, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.header__logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger__line {
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 19, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--muted);
  transition: var(--transition);
}

.mobile-menu__link:hover {
  color: var(--primary);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
  margin-top: 20px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero__glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(0, 200, 5, 0.1);
  border: 1px solid rgba(0, 200, 5, 0.3);
  color: var(--primary);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 40%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--secondary);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  width: 100%;
  max-width: 520px;
  border: 3px solid #FFAF00;
  box-shadow: 6px 6px 0 #FFAF00;
  animation: float 6s ease-in-out infinite;
}

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

/* ---------- BUBBLES ---------- */
.bubble {
  position: absolute;
  bottom: -100px;
  left: var(--left);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 200, 5, 0.15), rgba(24, 184, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: bubbleRise var(--duration) var(--delay) ease-in infinite;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) scale(1);
    opacity: 0;
  }
}

/* ---------- PARTICLES ---------- */
.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--primary);
  animation: particleFloat 5s var(--delay) ease-in-out infinite alternate;
  opacity: 0.5;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0); opacity: 0.3; }
  100% { transform: translate(20px, -30px); opacity: 0.7; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__image {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 30px var(--secondary-glow));
}

.about__text {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__text strong {
  color: var(--text);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 120px 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(0, 200, 5, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 200, 5, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.philosophy__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.15;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--text), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy__text {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ============================================
   TOKEN
   ============================================ */
.token {
  padding: 120px 0;
}

.token__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: -32px;
  margin-bottom: 56px;
}

.token__subtitle strong {
  color: var(--secondary);
}

.token__dashboard {
  max-width: 880px;
  margin: 0 auto;
}

.token__hero-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 36px;
  background: rgba(24, 184, 255, 0.06);
  border: 1px solid rgba(24, 184, 255, 0.18);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.token__hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
  border-radius: 4px 0 0 4px;
}

.token__hero-panel:hover {
  border-color: rgba(24, 184, 255, 0.35);
  box-shadow: 0 8px 40px rgba(24, 184, 255, 0.08);
}

.token__hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(24, 184, 255, 0.5);
  flex-shrink: 0;
}

.token__hero-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.token__hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.token__hero-value {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.token__hero-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: rgba(24, 184, 255, 0.12);
  border: 1px solid rgba(24, 184, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  flex-shrink: 0;
}

.token__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.token-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
}

.token-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(24, 184, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.token-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 184, 255, 0.2);
  box-shadow: 0 12px 36px rgba(24, 184, 255, 0.06);
}

.token-panel:hover::after {
  opacity: 1;
}

.token-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(24, 184, 255, 0.35);
  border: 1.5px solid var(--secondary);
  flex-shrink: 0;
  margin-top: 6px;
}

.token-panel__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.token-panel__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.token-panel__value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================
   ROADMAP
   ============================================ */
.roadmap {
  padding: 120px 0;
  position: relative;
}

.roadmap__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.roadmap__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 120px;
}

.roadmap__art {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
}

.roadmap__timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline__item {
  display: flex;
  gap: 24px;
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.timeline__item:last-child::before {
  display: none;
}

.timeline__marker {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
  position: relative;
  z-index: 1;
}

.timeline__card {
  padding: 28px;
  flex: 1;
  transition: var(--transition);
}

.timeline__card:hover {
  transform: translateX(8px);
}

.timeline__phase {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline__list li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 16px;
  position: relative;
}

.timeline__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

/* ============================================
   COMMUNITY
   ============================================ */
.community {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.community__bg {
  position: absolute;
  inset: 0;
}

.community__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.community__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 19, 30, 0.95), rgba(8, 19, 30, 0.7));
}

.community__inner {
  position: relative;
  z-index: 1;
}

.community__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.community__text {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 2;
}

.community__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--card-border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
}

.footer__ticker {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
}

.footer__tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__info {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 2;
}

.footer__art {
  display: flex;
  justify-content: flex-end;
}

.footer__art-img {
  max-width: 160px;
  opacity: 0.4;
}

.footer__divider {
  height: 1px;
  background: var(--card-border);
  margin-bottom: 24px;
}

.footer__motto {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.footer__disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.6;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 0 20px var(--primary-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--primary-glow);
}

/* ============================================
   MOUSE GLOW
   ============================================ */
.mouse-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

body:hover .mouse-glow {
  opacity: 0.12;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal--delay {
  transition-delay: 0.15s;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image {
    max-width: 350px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about__image {
    max-width: 320px;
    margin: 0 auto;
  }

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

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

  .roadmap__visual {
    position: static;
  }

  .roadmap__art {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__art {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 9vw, 3.4rem);
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

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

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

  .feature-card {
    padding: 32px 24px;
  }

  .philosophy__headline {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .community__cta {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .about,
  .features,
  .token,
  .roadmap,
  .philosophy {
    padding: 80px 0;
  }

  .community {
    padding: 100px 0;
  }

  .timeline__item {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
