/* ===========================================
   PLAYER2 TM - STYLES
   =========================================== */

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

html { scroll-behavior: smooth; }

html, body {
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --p2-yellow: #FFB400;
  --p2-yellow-bright: #FFC72C;
  --p2-orange: #FF8A00;
  --p2-gold: #E5A100;
  --p2-amber: #FFD166;
  --p2-black: #0A0A0A;
  --p2-dark: #141414;
  --p2-darker: #0F0F0F;
  --p2-gray: #888;
  --p2-white: #FFFFFF;
}

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; }

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 180, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 180, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ===== ANIMAÇÕES SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 180, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}

.logo-text { color: var(--p2-white); }
.logo-text span { color: var(--p2-yellow); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--p2-yellow); }

.nav-cta {
  background: var(--p2-yellow);
  color: var(--p2-black);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover {
  background: var(--p2-yellow-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 180, 0, 0.3);
  color: var(--p2-yellow);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary {
  background: var(--p2-yellow);
  color: var(--p2-black);
  padding: 18px 36px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--p2-yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 180, 0, 0.3);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--p2-white);
  padding: 18px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover {
  border-color: var(--p2-yellow);
  color: var(--p2-yellow);
}

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

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.3);
  color: var(--p2-yellow);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--p2-yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 .highlight {
  color: var(--p2-yellow);
  display: inline-block;
}

.hero h1 .strike {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: var(--p2-yellow);
  text-decoration-thickness: 3px;
}

.hero p.subhead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 640px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.stat-item .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--p2-yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-visual {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.glow-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.25) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.controller-svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 60px rgba(255, 180, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}

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

/* ===========================================
   SECTION GENERICS
   =========================================== */
.section-tag {
  display: inline-block;
  color: var(--p2-yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: 'Courier New', monospace;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  max-width: 800px;
}

.section-title .yellow { color: var(--p2-yellow); }

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 700px;
  margin-bottom: 64px;
  line-height: 1.6;
}

/* ===========================================
   NPC SECTION
   =========================================== */
.npc-section {
  position: relative;
  padding: 120px 64px;
  background: var(--p2-dark);
  border-top: 1px solid rgba(255, 180, 0, 0.15);
  border-bottom: 1px solid rgba(255, 180, 0, 0.15);
}

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

.npc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.npc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--p2-yellow);
  transition: height 0.3s;
}

.npc-card:hover {
  background: rgba(255, 180, 0, 0.04);
  border-color: rgba(255, 180, 0, 0.3);
  transform: translateY(-4px);
}
.npc-card:hover::before { height: 100%; }

.npc-card .npc-tag {
  display: inline-block;
  background: rgba(136, 136, 136, 0.15);
  color: #999;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  font-family: 'Courier New', monospace;
}

.npc-card h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.npc-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
}

/* ===========================================
   TRANSITION BAND
   =========================================== */
.transition-band {
  padding: 80px 64px;
  text-align: center;
  background: var(--p2-black);
  position: relative;
}

.transition-band::before,
.transition-band::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--p2-yellow), transparent);
}
.transition-band::before { top: 0; }
.transition-band::after { bottom: 0; }

.transition-band .quote {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto;
}
.transition-band .quote .highlight { color: var(--p2-yellow); }

/* ===========================================
   ECOSYSTEM SECTION
   =========================================== */
.ecosystem-section {
  position: relative;
  padding: 120px 64px;
  background: var(--p2-black);
  overflow: hidden;
}
.ecosystem-section .grid-bg { opacity: 0.5; }

.ecosystem-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}
.ecosystem-header .section-title { margin: 0 auto 20px; }
.ecosystem-header .section-subtitle { margin: 0 auto; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.ecosystem-card {
  background: linear-gradient(145deg, #161616, #0d0d0d);
  border: 1px solid rgba(255, 180, 0, 0.12);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 180, 0, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.ecosystem-card:hover {
  border-color: rgba(255, 180, 0, 0.5);
  transform: translateY(-6px);
}
.ecosystem-card:hover::before { opacity: 1; }

.ecosystem-card.featured {
  grid-column: span 2;
  background: linear-gradient(145deg, #1a1408, #0a0a0a);
  border-color: rgba(255, 180, 0, 0.3);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--p2-yellow);
  transition: all 0.3s;
}

.ecosystem-card:hover .card-icon {
  background: var(--p2-yellow);
  color: var(--p2-black);
  transform: rotate(-5deg) scale(1.05);
}

.card-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--p2-yellow);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 700;
}

.card-name {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--p2-white);
}
.ecosystem-card.featured .card-name {
  font-size: 32px;
  color: var(--p2-yellow);
}

.card-role {
  font-size: 13px;
  color: var(--p2-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
}

.card-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.ecosystem-card.featured .card-description { font-size: 17px; }

.card-divider {
  width: 40px;
  height: 2px;
  background: var(--p2-yellow);
  margin: 20px 0;
  opacity: 0.6;
}

.ecosystem-footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ecosystem-footer p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.ecosystem-footer .yellow {
  color: var(--p2-yellow);
  font-weight: 700;
}

/* ===========================================
   CASE SECTION (FRIBOI)
   =========================================== */
.case-section {
  position: relative;
  padding: 120px 64px;
  background: var(--p2-dark);
  border-top: 1px solid rgba(255, 180, 0, 0.15);
}

.case-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.case-info .section-tag { margin-bottom: 20px; }

.case-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.case-info h2 .yellow { color: var(--p2-yellow); }

.case-info p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.case-quote {
  border-left: 3px solid var(--p2-yellow);
  padding-left: 24px;
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 500;
}

.case-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 180, 0, 0.2);
  border-radius: 16px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.case-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 180, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.case-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -3px;
  color: var(--p2-white);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.case-logo-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--p2-yellow);
  letter-spacing: 1.5px;
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.3);
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===========================================
   CONTACT SECTION (FORM)
   =========================================== */
.contact-section {
  position: relative;
  padding: 120px 64px;
  background: var(--p2-black);
  overflow: hidden;
}

.contact-section .grid-bg { opacity: 0.7; }

.contact-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 24px; }

.contact-info p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 15px;
}

.channel:hover {
  border-color: rgba(255, 180, 0, 0.4);
  background: rgba(255, 180, 0, 0.05);
  transform: translateX(4px);
}

.channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 180, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p2-yellow);
  flex-shrink: 0;
}

.channel-text strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--p2-yellow);
  font-weight: 700;
  margin-bottom: 2px;
}

/* FORM */
.contact-form {
  background: linear-gradient(145deg, #161616, #0d0d0d);
  border: 1px solid rgba(255, 180, 0, 0.2);
  border-radius: 16px;
  padding: 40px;
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--p2-white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--p2-yellow);
  background: rgba(0, 0, 0, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ff4444;
}

.form-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #ff6666;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.3);
  border-radius: 12px;
  margin-top: 20px;
}

.form-success.visible { display: block; }

.form-success h4 {
  color: var(--p2-yellow);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-success p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 16px;
}

.form-success a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--p2-darker);
  padding: 60px 64px 30px;
  border-top: 1px solid rgba(255, 180, 0, 0.15);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 400px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: flex-start;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--p2-yellow);
  color: var(--p2-black);
  border-color: var(--p2-yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .navbar { padding: 0 24px; }
  .hero { padding: 120px 24px 80px; }
  .npc-section,
  .ecosystem-section,
  .transition-band,
  .case-section,
  .contact-section,
  .footer { padding-left: 24px; padding-right: 24px; }
  .npc-grid { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-card.featured { grid-column: span 1; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .case-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 180, 0, 0.15);
  }
  .nav-links.open li { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .nav-links.open li:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 20px 60px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .stat-item .num { font-size: 28px; }
  .npc-card, .ecosystem-card, .contact-form { padding: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}