:root {
  --bg-primary: #333333;
  --bg-secondary: #2a2a2a;
  --bg-surface: rgba(255, 255, 255, 0.05);
  --bg-surface-hover: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --accent: #0099ff;
  --accent-alt: #00ff88;
  --border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-secondary);
  background: linear-gradient(
    to bottom,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  min-height: 100vh;
}

button {
  font-family: inherit;
  font-size: inherit;
}

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

/* Header */
.site-header {
  padding: 2rem 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: Monaco, Consolas, monospace;
  font-size: 24px;
  color: var(--accent);
  text-decoration: none;
}

.logo span {
  color: var(--text-primary);
  font-family: -apple-system, sans-serif;
  font-weight: 300;
  font-size: 18px;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Hero */
.hero-panel {
  padding: 10rem 0 5rem;
  text-align: center;
}

.hero-logo {
  font-family: Monaco, Consolas, monospace;
  font-size: 72px;
  color: var(--accent);
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.tagline {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Philosophy */
.philosophy {
  padding: 4rem 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.philosophy-card:hover {
  background: var(--bg-surface-hover);
  transform: translateY(-2px);
}

.philosophy-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.philosophy-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Services */
.services {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Vision Statement */
.vision-panel {
  padding: 4rem 0;
  text-align: center;
  background: rgba(0, 153, 255, 0.1);
  margin: 4rem 0;
}

.vision-panel h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 300;
}

.vision-panel p {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FAQ */
.faq {
  padding: 4rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item h3 {
  color: var(--text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA */
.cta-panel {
  padding: 5rem 0;
  text-align: center;
}

.cta-panel h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 300;
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 2rem;
}

.button:hover {
  background: #0077cc;
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-credits {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Legal pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    color: var(--accent);
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-logo {
    font-size: 48px;
  }

  .philosophy-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}
