.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-base);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--bg-tertiary);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo img {
  height: 28px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links a {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-base);
}

.nav-links a.active {
  background: var(--accent-soft);
  color: var(--accent-primary);
}

.nav-links a:hover {
  background: var(--accent-soft);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 500;
  text-align: center;
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
  border: 2px solid var(--accent-primary);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: white;
}

.section {
  padding: var(--space-xl) 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.bg-grain {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.15) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

.footer {
  background: var(--bg-secondary);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  font-weight: 600;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.copyright {
  border-top: 1px solid var(--bg-tertiary);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}