/* ===== CSS VARIABLES ===== */
:root {
  --navy: #030D1A;
  --gold: #FEE2A6;
  --dark-gray: #1F2937;
  --text-gray: #D1D5DB;
  --text-light-gray: #9CA3AF;
  --success: #10B981;
  --info: #3B82F6;
  --border: #374151;
  --shadow: rgba(0, 0, 0, 0.25);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(3, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-gray);
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 24px;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: currentColor;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: currentColor;
  transition: 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--text-gray);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: #FDD835;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 226, 166, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-icon {
  font-size: 20px;
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 20px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.hero-logo {
  margin-bottom: 32px;
   width: 80px;
  height: 80px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 16px;
}

.hero-logo-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
}

.hero-title {
  font-size: 56px;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-light-gray);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-img {
  height: 32px;
  display: block;
}

.trust-item::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  margin-right: 4px;
}



.hero-visual {
  position: relative;
}

.browser-mockup {
  background: linear-gradient(135deg, var(--dark-gray), #111827);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 25px 50px var(--shadow);
  border: 1px solid var(--border);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #EAB308; }
.dot.green { background: #10B981; }

.address-bar {
  flex: 1;
  background: var(--dark-gray);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-light-gray);
}

.mockup-image {
  width: 100%;
  border-radius: 8px;
}

.floating-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(254, 226, 166, 0.3);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 0;
  background: rgba(31, 41, 55, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(3, 13, 26, 0.5);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s;
  position: relative;
}

.feature-card:hover {
  border-color: rgba(254, 226, 166, 0.5);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(254, 226, 166, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-gray);
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 80px 0;
}

.stats-container {
  background: linear-gradient(135deg, rgba(254, 226, 166, 0.1), rgba(253, 216, 53, 0.1));
  border: 1px solid rgba(254, 226, 166, 0.2);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}

.main-stat {
  margin-bottom: 48px;
}

.stat-number {
  font-size: 64px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 24px;
  color: var(--text-gray);
}

.additional-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}

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

.stat-value {
  font-size: 32px;
  font-weight: bold;
  color: var(--gold);
}

.stat-name {
  color: var(--text-gray);
}

/* ===== PROFILE PREVIEW SECTION ===== */
.profile-preview {
  padding: 80px 0;
  background: rgba(31, 41, 55, 0.5);
}

.profile-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(3, 13, 26, 0.8);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px var(--shadow);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.profile-info h3 {
  font-size: 20px;
  color: var(--gold);
}

.profile-info p {
  color: var(--text-gray);
}

.profile-stats {
  margin-bottom: 24px;
}

.profile-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid;
}

.profile-stat.success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6EE7B7;
}

.profile-stat.info {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93C5FD;
}

.profile-stat.highlight {
  background: rgba(254, 226, 166, 0.1);
  border-color: rgba(254, 226, 166, 0.3);
  color: var(--gold);
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
  padding: 80px 0;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.screenshot-card {
  background: var(--dark-gray);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px var(--shadow);
  border: 1px solid var(--border);
}

.screenshot-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.screenshot-info {
  padding: 20px;
}

.screenshot-info h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
}

.screenshot-info p {
  font-size: 14px;
  color: var(--text-gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--text-light-gray);
  margin-bottom: 16px;
  max-width: 400px;
}

.disclaimer {
  font-size: 14px !important;
  color: var(--text-light-gray) !important;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--text-light-gray);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
  color: var(--text-light-gray);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu.show {
    display: block;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 8px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .stats-container {
    padding: 32px 20px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .stat-label {
    font-size: 18px;
  }
  
  .additional-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stats-container {
    padding: 24px 16px;
  }
  
  .profile-card {
    padding: 24px;
  }
  
  .features-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-visual {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card,
.screenshot-card {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }