/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Colors inspired by reference */
:root {
  --bg: #0a192f;
  --accent: #64ffda;
  --text-main: #ccd6f6;
  --text-muted: #8892b0;
  --border: rgba(100, 255, 218, 0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.logo {
  color: var(--accent);
  font-weight: 700;
  border: 2px solid var(--accent);
  padding: 6px 10px;
  border-radius: 6px;
}

.nav nav a {
  margin-left: 25px;
  font-size: 14px;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav nav a:hover {
  color: var(--accent);
}

.btn-outline {
  padding: 8px 14px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent) !important;
}

/* Hero */
.hero {
  max-width: 900px;
  padding: 120px 60px;
}

.intro {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 20px;
}

.title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.title span {
  color: var(--text-muted);
}

.description {
  max-width: 550px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: rgba(100, 255, 218, 0.1);
}

/* Footer Social */
.social {
  position: fixed;
  bottom: 40px;
  left: 60px;
  display: flex;
  flex-direction: column;
}

.social a {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 30px;
  }

  .title {
    font-size: 42px;
  }

  .nav {
    padding: 20px 30px;
  }

  .social {
    left: 30px;
  }
}
