/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0d0e;
  font-family: 'Press Start 2P', 'Courier New', monospace;
  color: #e3f0e6;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  image-rendering: pixelated;
}

/* pixel‑ish container */
.pixel-wrapper {
  max-width: 1280px;
  width: 100%;
  background: #111415;
  border: 4px solid #2d4a3b;
  box-shadow: 
    0 0 0 2px #1f2e27,
    0 0 0 6px #0a0f0c,
    0 8px 32px rgba(0, 255, 170, 0.08);
  padding: 2rem 2rem 3rem;
  border-radius: 8px;
  image-rendering: pixelated;
  position: relative;
}

/* pixel border effect */
.pixel-wrapper::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #1f2e27;
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}

/* ===== TYPOGRAPHY & PIXEL FLAIR ===== */
h1, h2, h3, .brand, .brand-name, .badge-agent, .cta-button, .stat-item .num, .stat-item .label {
  font-family: 'Press Start 2P', 'Courier New', monospace;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
  image-rendering: pixelated;
}

h1, h2, h3, .brand {
  font-weight: 400;
  letter-spacing: 0.08em;
}

.glow-green {
  color: #b5ffb5;
  text-shadow: 
    0 0 8px #2aff8a,
    0 0 20px #1f9f6a,
    2px 2px 0px #0a1a12;
}

.pixel-corners {
  border: 3px solid #3b5e4b;
  border-radius: 4px;
  background: #131a17;
  box-shadow: inset 0 0 0 2px #2d4a3b;
}

/* ===== HEADER / LOGO ===== */
.hood-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 0.5rem;
  margin-bottom: 2.8rem;
  border-bottom: 4px dashed #2d4a3b;
  padding-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.robinhood-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e2d25;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border-radius: 4px;
  border: 2px solid #6fcf97;
  box-shadow: 0 0 12px #2aff8a55, inset 0 0 0 2px #0a1a12;
  image-rendering: pixelated;
}

.robinhood-icon svg {
  display: block;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 4px #8effb5);
  image-rendering: pixelated;
}

.robinhood-icon span {
  font-size: 0.7rem;
  font-weight: 400;
  margin-left: 0.25rem;
  color: #b5ffb5;
  letter-spacing: 0.1em;
  font-family: 'Press Start 2P', monospace;
}

.brand-name {
  font-size: 2rem;
  font-weight: 400;
  color: #b5ffb5;
  text-shadow: 
    0 0 18px #2aff8a55,
    3px 3px 0px #0a1a12,
    -1px -1px 0px #1f9f6a;
  letter-spacing: 0.1em;
  font-family: 'Press Start 2P', monospace;
  image-rendering: pixelated;
}

.badge-agent {
  background: #1c2d24;
  border: 2px solid #6fcf97;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: #b5ffb5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: inset 0 0 10px #2aff8a22, 4px 4px 0px #0a1a12;
  backdrop-filter: blur(4px);
  font-family: 'Press Start 2P', monospace;
}

/* ===== HERO ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin: 2.5rem 0 3rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-text h2 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  font-weight: 400;
  text-shadow: 
    3px 3px 0px #0a1a12,
    -1px -1px 0px #1f3f2d;
  letter-spacing: 0.05em;
}

.hero-text h2 small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #a0c0b0;
  margin-top: 0.3rem;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 0px #0a1a12;
}

.hero-text p {
  font-size: 0.75rem;
  color: #c8dfd3;
  max-width: 90%;
  margin-bottom: 2rem;
  border-left: 4px solid #6fcf97;
  padding-left: 1.2rem;
  line-height: 1.8;
  text-shadow: 2px 2px 0px #0a1a12;
  letter-spacing: 0.02em;
}

.cta-button {
  display: inline-block;
  background: #1e3a2b;
  border: 3px solid #6fcf97;
  color: #d6ffe6;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.9rem 2.8rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 
    0 0 20px #2aff8a33, 
    inset 0 0 12px #3fff9a22,
    6px 6px 0px #0a1a12;
  transition: 0.2s;
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
  font-family: 'Press Start 2P', monospace;
  image-rendering: pixelated;
  text-shadow: 2px 2px 0px #0a1a12;
}

.cta-button:hover {
  background: #2a503b;
  box-shadow: 
    0 0 32px #2aff8a77, 
    inset 0 0 16px #9affc0,
    4px 4px 0px #0a1a12;
  transform: translate(2px, 2px);
  border-color: #9affb0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e1915;
  border-radius: 4px;
  padding: 1.5rem;
  border: 3px solid #2d4a3b;
  box-shadow: inset 0 0 40px #1d3a2b, 6px 6px 0px #0a1a12;
  min-height: 200px;
  image-rendering: pixelated;
}

.pixel-shib {
  font-size: 4.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 18px #6fcf97);
  background: #14211b;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: 3px solid #6fcf97;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #b5ffb5;
  text-shadow: 
    0 0 12px #2aff8a,
    4px 4px 0px #0a1a12;
  font-family: 'Press Start 2P', monospace;
  image-rendering: pixelated;
}

.pixel-shib span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-top: 4px;
  text-shadow: 2px 2px 0px #0a1a12;
}

/* ===== FEATURES / AGENT IDENTITY ===== */
.section-title {
  font-size: 1.4rem;
  margin: 3rem 0 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 400;
  text-shadow: 3px 3px 0px #0a1a12;
  letter-spacing: 0.1em;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg, #6fcf97, transparent);
  image-rendering: pixelated;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  margin-top: 0.5rem;
}

.feature-card {
  background: #141e1a;
  padding: 1.8rem 1.2rem;
  border-radius: 4px;
  border: 3px solid #2d4a3b;
  box-shadow: 6px 6px 0px #1a2d22;
  transition: 0.2s;
  backdrop-filter: blur(4px);
  image-rendering: pixelated;
}

.feature-card:hover {
  border-color: #6fcf97;
  box-shadow: 0 0 24px #2aff8a22, 4px 4px 0px #1f3f2d;
  transform: translate(2px, 2px);
}

.feature-card .emoji-big {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 0.25rem;
  filter: drop-shadow(2px 2px 0px #0a1a12);
}

.feature-card h3 {
  color: #b5ffb5;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  font-weight: 400;
  text-shadow: 2px 2px 0px #0a1a12;
  letter-spacing: 0.05em;
}

.feature-card p {
  font-size: 0.6rem;
  color: #b0cebe;
  line-height: 1.8;
  text-shadow: 1px 1px 0px #0a1a12;
}

/* ===== STATS / CHAIN BADGE ===== */
.chain-stats {
  margin: 3rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: #0f1814;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  border: 3px solid #2d4a3b;
  box-shadow: 6px 6px 0px #0a1a12;
  image-rendering: pixelated;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-weight: 400;
}

.stat-item .num {
  font-size: 1.2rem;
  font-weight: 400;
  color: #b5ffb5;
  text-shadow: 
    0 0 12px #2aff8a,
    2px 2px 0px #0a1a12;
  font-family: 'Press Start 2P', monospace;
}

.stat-item .label {
  color: #8fb3a0;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Press Start 2P', monospace;
  text-shadow: 1px 1px 0px #0a1a12;
}

.robinhood-chain-badge {
  display: flex;
  align-items: center;
  background: #1a2d22;
  padding: 0.3rem 1.2rem 0.3rem 0.6rem;
  border-radius: 4px;
  border: 2px solid #6fcf97;
  gap: 0.6rem;
  box-shadow: 4px 4px 0px #0a1a12;
}

.robinhood-chain-badge svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 6px #6fcf97);
  image-rendering: pixelated;
}

.robinhood-chain-badge span {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.55rem;
  color: #b5ffb5;
  font-weight: 400;
  text-shadow: 2px 2px 0px #0a1a12;
}

/* ===== FOOTER ===== */
.footer-note {
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 4px dashed #2d4a3b;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.55rem;
  color: #7a9e89;
  font-family: 'Press Start 2P', monospace;
  text-shadow: 2px 2px 0px #0a1a12;
  letter-spacing: 0.05em;
}

.footer-note a {
  color: #b5ffb5;
  text-decoration: none;
  border-bottom: 2px dotted #3b5e4b;
  text-shadow: 2px 2px 0px #0a1a12;
}

.footer-note a:hover {
  color: #9affb0;
  border-bottom-color: #6fcf97;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 580px) {
  .pixel-wrapper {
    padding: 1.2rem;
  }
  .brand-name {
    font-size: 1.4rem;
  }
  .hero-text h2 {
    font-size: 1.6rem;
  }
  .hero-text p {
    max-width: 100%;
    font-size: 0.65rem;
  }
  .chain-stats {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 4px;
  }
  .robinhood-icon span {
    display: none;
  }
  .pixel-shib {
    font-size: 3rem;
    padding: 0.5rem 1.2rem;
  }
  .pixel-shib span {
    font-size: 0.6rem;
  }
  .cta-button {
    font-size: 0.65rem;
    padding: 0.7rem 1.8rem;
  }
  .stat-item .num {
    font-size: 0.9rem;
  }
  .badge-agent {
    font-size: 0.45rem;
    padding: 0.3rem 0.8rem;
  }
  .section-title {
    font-size: 1rem;
  }
  .feature-card h3 {
    font-size: 0.65rem;
  }
  .feature-card p {
    font-size: 0.5rem;
  }
}