/* Shared styles for all landing pages */

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

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #121212;
  color: #ededed;
  min-height: 100vh;
}

/* Header */
.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.logo {
  position: fixed;
  top: 4px;
  left: 20px;
  height: 40px;
  width: auto;
  z-index: 10;
  cursor: pointer;
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  margin: 8px 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #f3c11b;
}

.footer-separator {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Common gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, #ededed 0%, #f3c11b 50%, #fbb040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shared section header style */
.section-header {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
  background: linear-gradient(135deg, #ededed 0%, #f3c11b 30%, #fbb040 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
