/* LazaiTrader Brand Styles */
:root {
  /* Primary Colors */
  --color-primary: #00040f;
  --color-secondary: #00f6ff;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-card-bg: #11101d;
  --color-overlay: #14101d;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Gradients */
  --gradient-blue: linear-gradient(157.81deg, #def9fa -43.27%, #bef3f5 -21.24%, #9dedf0 12.19%, #7de7eb 29.82%, #5ce1e6 51.94%, #33bbcf 90.29%);
  --gradient-black: linear-gradient(144.39deg, #ffffff -278.56%, #6d6d6d -78.47%, #11101d 91.61%);
  --gradient-cta: linear-gradient(to right, #22d3ee, #3b82f6);
  --gradient-hero: linear-gradient(to right, rgb(34, 211, 238), rgb(59, 130, 246), rgb(168, 85, 247));

  /* Shadows */
  --shadow-card: 0px 20px 100px -10px rgba(66, 71, 91, 0.1);
  --shadow-glow: 0 0 40px rgba(0, 246, 255, 0.3);
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

/* Ambient gradient decorations */
.gradient-blur {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.gradient-blur-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: linear-gradient(180deg, rgba(188, 165, 255, 0) 0%, #214d76 100%);
  filter: blur(150px);
  opacity: 0.5;
}

.gradient-blur-2 {
  width: 400px;
  height: 400px;
  bottom: 100px;
  left: -100px;
  background: linear-gradient(90deg, #f4c4f3 0%, #fc67fa 100%);
  filter: blur(200px);
  opacity: 0.15;
}

/* Navigation */
.navbar {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 1.5rem 2rem;
}

.nav-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links li a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--color-secondary);
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  padding: 0.5rem;
}

.nav-toggle-icon {
  width: 28px;
  height: 28px;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  right: 1rem;
  background: rgba(17, 16, 29, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  transition: color 0.3s ease;
}

.nav-mobile-link:hover {
  color: var(--color-secondary);
}

@media (min-width: 640px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

main {
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-cta);
  color: #111827;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: 1px solid var(--color-secondary);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: #111827;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.2;
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-break {
  display: none;
}

.hero-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: rgb(209, 213, 219);
  line-height: 2rem;
  max-width: 28rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 2.5rem 0;
}

.hero-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle-1 {
  width: 20rem;
  height: 20rem;
  background: linear-gradient(to right, rgba(34, 211, 238, 0.2), rgba(168, 85, 247, 0.2));
}

.hero-circle-2 {
  width: 16rem;
  height: 16rem;
  background: linear-gradient(to right, rgba(34, 211, 238, 0.3), rgba(59, 130, 246, 0.3));
}

.hero-circle-3 {
  width: 12rem;
  height: 12rem;
  background: var(--gradient-cta);
}

.hero-icon {
  width: 6rem;
  height: 6rem;
  color: #111827;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero-blur-1 {
  width: 10rem;
  height: 8rem;
  top: 0;
  background: linear-gradient(to right, rgba(244, 114, 182, 0.3), rgba(168, 85, 247, 0.3));
  filter: blur(3rem);
}

.hero-blur-2 {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(3rem);
  bottom: 10rem;
}

.hero-blur-3 {
  width: 12rem;
  height: 12rem;
  right: 5rem;
  bottom: 5rem;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.2));
  filter: blur(3rem);
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-break {
    display: block;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-visual {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-value {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-label {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.stat-box {
  background: var(--gradient-black);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 246, 255, 0.3);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Charts Section */
.charts-section h2,
.chains-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-text-primary);
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.chart-card {
  background: rgba(17, 16, 29, 0.6);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

.chart-container {
  position: relative;
  height: 250px;
}

#chains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.chain-card {
  background: rgba(17, 16, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.chain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 246, 255, 0.3);
  background: rgba(31, 41, 55, 0.8);
}

.chain-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.chain-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

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

.chain-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.chain-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* Stats Section */
.stats-section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-top: 1rem;
}

.stats-hero {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.hero-stat {
  display: inline-block;
}

.charts-section {
  margin-top: 3rem;
}

.charts-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-text-primary);
}

.chart-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

.chains-section {
  margin-top: 3rem;
}

.chains-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-text-primary);
}

.update-info {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 2rem;
}

/* Features Section */
.features-section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-subtitle {
  font-size: 1.125rem;
  color: rgb(209, 213, 219);
  line-height: 2rem;
  max-width: 42rem;
  margin: 1.5rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1rem;
  background: transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgb(31, 41, 55);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: #111827;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 1rem;
  color: rgb(209, 213, 219);
  line-height: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Get Started Section */
.get-started-section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.get-started-content {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  align-items: center;
}

.get-started-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 2.5rem 0;
}

.get-started-box {
  width: 100%;
  height: 24rem;
  position: relative;
  z-index: 5;
  background: linear-gradient(to bottom right, rgb(31, 41, 55), rgb(17, 24, 39));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.get-started-icon-wrapper {
  width: 6rem;
  height: 6rem;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-started-icon {
  width: 3rem;
  height: 3rem;
  color: #111827;
}

.get-started-label {
  color: rgb(209, 213, 219);
  font-weight: 500;
}

.get-started-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.get-started-blur-1 {
  z-index: 3;
  left: -25%;
  top: 0;
  width: 50%;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.get-started-blur-2 {
  z-index: 0;
  left: -25%;
  bottom: 0;
  width: 50%;
  height: 50%;
  background: linear-gradient(to right, rgba(244, 114, 182, 0.2), rgba(168, 85, 247, 0.2));
}

.get-started-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.get-started-text .section-title {
  text-align: left;
}

.get-started-description {
  font-size: 1.125rem;
  color: rgb(209, 213, 219);
  line-height: 2rem;
  max-width: 28rem;
  margin-top: 1.25rem;
}

.get-started-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.get-started-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-secondary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.feature-bullet-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.feature-bullet-text {
  font-size: 0.875rem;
  color: rgb(209, 213, 219);
  line-height: 1.25rem;
}

.get-started-text .btn-primary {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .get-started-content {
    flex-direction: row-reverse;
    align-items: center;
  }

  .get-started-visual {
    margin: 0;
    margin-left: 2.5rem;
  }
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-circle {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--color-secondary);
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-letter {
  color: #111827;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--color-text-primary);
}

.footer-tagline {
  font-size: 1.125rem;
  color: rgb(209, 213, 219);
  line-height: 2rem;
  margin-top: 1rem;
  max-width: 21rem;
}

.footer-links {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.footer-column-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.footer-column-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column-list li a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgb(209, 213, 219);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column-list li a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(55, 65, 81);
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--color-text-primary);
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: rgb(209, 213, 219);
  transition: color 0.3s ease;
  width: 1.25rem;
  height: 1.25rem;
}

.social-link:hover {
  color: var(--color-secondary);
}

.social-link svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero, .stat-box, .chart-card, .chain-card {
  animation: fadeInUp 0.5s ease forwards;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.chart-card:nth-child(1) { animation-delay: 0.3s; }
.chart-card:nth-child(2) { animation-delay: 0.4s; }

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.75rem;
  }

  .logo {
    width: 44px;
    height: 44px;
  }

  .hero-value {
    font-size: 2.75rem;
  }

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

  .stat-value {
    font-size: 2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

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

  .chart-container {
    height: 200px;
  }

  main {
    padding: 1rem;
  }

  section {
    padding: 1.5rem;
    border-radius: 16px;
  }
}