body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #050807;
  color: #e5e7eb;
}

/* HEADER */
.site-header {
  border-bottom: 1px solid #0f1513;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 34px;
}

.brand span {
  font-weight: 700;
  font-size: 1.1rem;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #9ca3af;
}

/* HERO */
.hero {
  padding: 140px 20px;
  text-align: center;
  background:
    radial-gradient(800px circle at top left, rgba(0,200,5,0.18), transparent 60%),
    radial-gradient(600px circle at bottom right, rgba(0,200,5,0.12), transparent 60%);
  animation: gradientFloat 14s ease-in-out infinite;
}

@keyframes gradientFloat {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.hero-content {
  animation: fadeUp 1.2s ease forwards;
}

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

.hero h1 {
  font-size: 3rem;
}

.hero p {
  max-width: 620px;
  margin: 16px auto;
  color: #9ca3af;
}

.hero-buttons {
  margin-top: 36px;
}

.btn-primary {
  background: #00c805;
  color: #000;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  margin-left: 18px;
  color: #00c805;
  text-decoration: none;
}

/* FOOTER */
.site-footer {
  background: #020403;
  padding: 80px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid li {
  color: #9ca3af;
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  margin: 12px 0;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
}

.newsletter-form button {
  background: #00c805;
  border: none;
  padding: 10px 16px;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
}

.footer-separator {
  height: 90px;
}

/* LEGAL */
.footer-legal {
  max-width: 1200px;
  margin: auto;
  font-size: 0.8rem;
  color: #7f8c85;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
}

.footer-brand img {
  height: 28px;
}

.footer-brand span {
  font-weight: 700;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin: 24px 0;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: #00c805;
  transition: transform 0.3s ease;
}

.social-icons a:hover svg {
  transform: translateY(-4px);
}

.legal-links a {
  margin-right: 16px;
  color: #00c805;
  text-decoration: none;
}

.region {
  margin-top: 20px;
}

/* ================================
   DOWNLOAD SECTION (HERO)
================================ */
.download-buttons {
  margin-top: 36px;
}

.auto-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #7f8c85;
}

/* ================================
   CRYPTO FLOATING ORBS ANIMATION
================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.crypto-orbs::before,
.crypto-orbs::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatOrb 18s infinite alternate ease-in-out;
  pointer-events: none;
}

.crypto-orbs::before {
  background: #00c805;
  top: 20%;
  left: 10%;
}

.crypto-orbs::after {
  background: #00ff88;
  bottom: 15%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes floatOrb {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-60px) translateX(40px);
  }
}

/* DEVICE BADGE */
.device-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0,200,5,0.15);
  color: #00c805;
  font-size: 0.85rem;
}

/* TICKER */
.ticker {
  background: #020403;
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 20s linear infinite;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FEATURES */
.features {
  max-width: 1100px;
  margin: 120px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.feature {
  background: #020403;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #0f1513;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

/* OS ICONS */
.os-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-right: 8px;
}

/* DEVICE BADGE */
.device-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0,200,5,0.15);
  color: #00c805;
  font-size: 0.85rem;
}

/* DOWNLOAD PROGRESS */
.download-progress {
  display: none;
  margin-top: 18px;
}

.progress-bar {
  background: #0f1513;
  border-radius: 10px;
  overflow: hidden;
  height: 8px;
  margin-bottom: 6px;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #00c805;
  transition: width 0.2s ease;
}

/* TICKER */
.ticker {
  background: #020403;
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 20s linear infinite;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* TRUST */
.trust {
  text-align: center;
  padding: 100px 20px;
}

.trust h2 {
  font-size: 2.2rem;
}

/* FEATURES */
.features {
  max-width: 1100px;
  margin: 120px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.feature {
  background: #020403;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #0f1513;
}

/* ENTERPRISE */
.enterprise {
  max-width: 900px;
  margin: 0 auto 140px;
  padding: 0 20px;
  text-align: center;
}

.enterprise ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.enterprise li {
  margin-bottom: 10px;
  color: #9ca3af;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

/* HERO LAYOUT */
.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* DEVICE MOCKUP */
.device-mockup {
  display: flex;
  justify-content: center;
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

.phone {
  width: 260px;
  background: #020403;
  border-radius: 32px;
  padding: 20px;
  border: 1px solid #0f1513;
  box-shadow:
    0 0 60px rgba(0,200,5,0.25),
    inset 0 0 0 2px #000;
}

.phone-header {
  text-align: center;
  font-weight: 600;
  margin-bottom: 18px;
}

.asset {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #0f1513;
  font-size: 0.9rem;
}

.balance {
  margin-top: 20px;
  padding: 14px;
  background: rgba(0,200,5,0.1);
  border-radius: 12px;
  text-align: center;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .device-mockup {
    display: none;
  }
}

/* MOBILE NOTICE */
.mobile-notice {
  display: none;
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 200, 5, 0.08);
  border: 1px solid rgba(0, 200, 5, 0.25);
  border-radius: 12px;
  color: #9ca3af;
  font-size: 0.95rem;
}

.mobile-notice strong {
  display: block;
  color: #00c805;
  margin-bottom: 6px;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .download-buttons {
    display: none;
  }

  .device-badge {
    margin-top: 18px;
  }
}
