/* ===== HOWWEAK - MODERN DARK STYLE ===== */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: #0d1117;
  color: #c9d1d9;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Subtle accent glow */
body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(88, 166, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* NAVBAR */
.navbar {
  background: rgba(22, 27, 34, 0.95);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 0;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
}

.nav-link {
  color: #8b949e !important;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: #FFA500 !important;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFA500;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.nav-logo {
  height: 120px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* HERO */
.hero {
  padding: 100px 20px 80px;
  text-align: center;
}

.logo-container {
  margin-bottom: 60px;
}

.logo-main {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: #FFA500;
  letter-spacing: 0.1em;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #c9d1d9;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.hero p {
  color: #8b949e;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* INPUT */
.input-group-custom {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid #30363d;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.input-group-custom:focus-within {
  border-color: #FFA500;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-control {
  background: transparent;
  border: none;
  color: #c9d1d9;
  padding: 20px 24px;
  font-size: 1.1rem;
}

.form-control::placeholder {
  color: #6e7681;
}

.form-control:focus {
  box-shadow: none;
  background: transparent;
  color: #c9d1d9;
  outline: none;
}

.btn-primary {
  background: #238636;
  border: 1px solid rgba(240, 246, 252, 0.1);
  color: #ffffff;
  font-weight: 600;
  padding: 20px 40px;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  border-radius: 0 6px 6px 0;
}

.btn-primary:hover {
  background: #2ea043;
  border-color: rgba(240, 246, 252, 0.2);
  color: #ffffff;
}

/* CARDS / STATS */
.card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid #30363d;
  border-radius: 6px;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 165, 0, 0.2);
}

.display-5 {
  font-weight: 700;
  color: #FFA500;
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
}

.text-primary {
  color: #8b949e !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* CONTENT PAGES */
.content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #c9d1d9;
  letter-spacing: -0.02em;
}

h2 {
  color: #c9d1d9;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
}

h3 {
  color: #c9d1d9;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

p, li {
  color: #8b949e;
  line-height: 1.8;
  margin-bottom: 15px;
}

a {
  color: #FFA500;
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* CODE BLOCKS */
code {
  background: rgba(110, 118, 129, 0.2);
  border: 1px solid #30363d;
  padding: 3px 8px;
  border-radius: 3px;
  color: #FFA500;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid #30363d;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
}

pre code {
  background: none;
  border: none;
  padding: 0;
}

/* LISTS */
ul, ol {
  margin-left: 20px;
  color: #8b949e;
}

li::marker {
  color: #FFA500;
}

/* TIMELINE (for roadmap) */
.timeline-item {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid #30363d;
  border-left: 3px solid #FFA500;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.timeline-item:hover {
  border-color: #FFA500;
  transform: translateX(4px);
}

.timeline-item h3 {
  color: #c9d1d9;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.timeline-item .status {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid #FFA500;
  border-radius: 3px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #FFA500;
  font-weight: 600;
}

.timeline-item .feature-list {
  list-style: none;
  padding-left: 0;
}

.timeline-item .feature-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #8b949e;
}

.timeline-item .feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFA500;
  font-weight: 700;
}

/* FOOTER */
footer {
  margin-top: 80px;
  padding: 30px;
  border-top: 1px solid #21262d;
  text-align: center;
  color: #6e7681;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-main {
    font-size: 2.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }

  .display-5 {
    font-size: 2rem;
  }
}
