/* veloridge-styles.css */

/* Global Styles */
:root {
  --primary-blue: #1a73e8;
  --dark-blue: #0d47a1;
  --light-blue: #e8f0fe;
  --text-dark: #3c4043;
  --text-medium: #5f6368;
  --text-light: #9aa0a6;
  --border-color: #dadce0;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  box-shadow: 0 2px 4px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--light-blue);
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  -webkit-user-select: none;
  user-select: none;
}
.logo a{
    text-decoration: none;
}

.logo .gradient-text {
  font-size: 28px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  background-color: var(--white);
  padding-top: 120px;
  padding-bottom: 80px;
  text-align: center;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* Features Section */
.features {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(60, 64, 67, 0.15);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Select-none */
.select-none{
    -webkit-user-select: none;
    user-select: none;
}

/* Network Section */
.network {
  background-color: var(--light-blue);
}

.network-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--text-medium);
  font-size: 16px;
}

/* Ad Preview Section */
.ad-preview {
  background-color: var(--white);
}

.ad-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta .btn {
  margin: 0 10px;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary-blue);
}

.cta .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  -webkit-user-select: none;
  user-select: none;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-links a {
  color: var(--white);
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .header-container {
    flex-direction: column;
    padding: 15px;
  }
  
  nav ul {
    margin-top: 15px;
  }
  
  nav ul li {
    margin-left: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    margin-bottom: 10px;
    width: 100%;
    max-width: 250px;
  }
  
  .cta .btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
  }
  .footer-logo {
  font-size: 44px;
}
}