/* src/styles/global.css */

/* Full content from the provided style.css */

:root {
    --bg-color: #0a0a0a;
    --surface-color: #1a1a1a;
    --surface-hover: #252525;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --border-color: #333333;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --font-main: 'Inter', sans-serif;
    --max-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ... (the rest of the style.css content, including all classes, media queries, etc. - paste the full provided CSS here) */

/* From the truncated part: */
.status-table-wrapper {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid v...(truncated 584 characters)..., 0.1); color: var(--success-color); }
.badge.coming-soon { background: rgba(245, 158, 11, 0.1); color: var(--warning-color); }

/* ... continue with the full CSS as provided in the document ... */

@media (max-width: 900px) {
    .hero-title { font-size: 2.5rem; }
    .grid-2, .grid-3, .grid-4, .faq-grid { grid-template-columns: 1fr; }
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
    .footer-links { flex-direction: column; gap: 15px; }
    .steps-diagram { flex-direction: column; }
    .flow-arrow { transform: rotate(90deg); margin: 10px 0; }
}


/* Inner Page Layouts - Add these! */

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Cards */
.card, .feature-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.feature-card {
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Check Lists */
.check-list {
  list-style: none;
  margin-top: 20px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Steps Diagram */
.steps-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.flow-step {
  text-align: center;
  max-width: 220px;
}

.flow-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 60px 0 20px;
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .steps-diagram {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}



/* Core Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px; /* This adds side padding! */
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
}

/* Navbar Fixes */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-cta {
  display: flex;
  gap: 15px;
}

/* Hero Padding Fix (so content doesn't touch edges) */
.hero {
  padding: 160px 0 100px;
}

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

.hero-content {
  grid-column: 1;
}

.hero-visual {
  grid-column: 2;
  justify-self: center;
}

/* Section Padding */
section {
  padding: 80px 0;
}

/* Mobile Menu Toggle (hide by default on desktop) */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta {
    display: none; /* Hidden until toggled by JS */
  }
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
  }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    grid-column: 1;
  }
}

/* Navbar Menu Links - Make them button-like */
.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent; /* For subtle outline on hover */
}

.nav-links a:hover {
  color: var(--text-primary);
  background-color: var(--surface-hover);
  border-color: var(--border-color);
}

/* Active/Current Page Highlight */
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--primary-color);
  background-color: rgba(59, 130, 246, 0.1); /* Subtle blue glow */
  border-color: var(--primary-color);
}


/* Buttons - Primary & Secondary */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background-color: var(--surface-color);
    color: white;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--surface-hover);
    border-color: var(--text-secondary);
}

/* Larger buttons for hero/CTA */
.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Optional: Make navbar CTA buttons slightly smaller */
.nav-cta .btn-primary,
.nav-cta .btn-secondary {
    padding: 10px 20px;
    font-size: 0.95rem;
}


/* Footer Styling */
.footer {
  padding: 80px 0 40px;
  background: #050505;
  border-top: 1px solid var(--border-color);
  margin-top: 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand h3.logo-footer {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-cta h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.footer-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-cta {
    order: -1; /* Moves CTA to top on mobile */
  }
  
  .footer-brand, .footer-links {
    text-align: center;
  }
}



.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  background: #000;
}

@media (max-width: 900px) {
  .hero-image {
    max-width: 100%;
    margin-top: 40px;
  }
}