@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
  /* Dark Premium Color System */
  --bg-deep: #030712;
  --bg-grid: rgba(99, 102, 241, 0.03);
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  /* Neon Gradient Accents */
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --accent-glow: rgba(6, 182, 212, 0.15);
  
  /* Glassmorphism settings */
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --shadow-premium: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
  
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
    linear-gradient(to bottom, rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  padding: 1.25rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.logo-text span {
  color: var(--accent-cyan);
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--accent-gradient);
  color: var(--bg-deep);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

.github-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.github-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-subtext {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  border: var(--glass-border);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  background: var(--bg-deep);
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  transition: transform 0.5s ease;
}

.mockup-wrapper:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.glass-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

/* Features Grid */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--shadow-premium);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.05);
}

.feature-icon-wrapper {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--accent-cyan);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Specs Section */
.specs-section {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 100%);
  border-top: var(--glass-border);
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.specs-list {
  list-style: none;
}

.specs-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.specs-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-cyan);
  font-weight: 800;
}

.specs-table-wrapper {
  padding: 2.5rem;
}

.specs-table-wrapper h3 {
  margin-bottom: 1.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.specs-table th {
  color: var(--accent-cyan);
  font-family: var(--font-display);
}

.specs-table td {
  font-size: 0.9rem;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

/* Footer */
footer {
  background-color: #02040a;
  padding: 5rem 0 3rem;
  border-top: var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.attribution-note {
  margin-top: 1rem;
  font-size: 0.75rem;
}

.attribution-note a {
  color: var(--text-muted);
  text-decoration: underline;
}

.attribution-note a:hover {
  color: var(--accent-cyan);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .mockup-wrapper {
    transform: none;
  }
  .mockup-wrapper:hover {
    transform: translateY(-5px);
  }
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none; /* Mobile Navigation Toggle (optional expansion) */
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  section {
    padding: 5rem 0;
  }
}

/* Tools Suite Section */
.tools-suite {
  background: rgba(255, 255, 255, 0.01);
  border-top: var(--glass-border);
  border-bottom: var(--glass-border);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tool-suite-card {
  padding: 2rem;
  text-align: left;
}

.tool-suite-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.tool-suite-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.tool-suite-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.tool-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.tool-dot.green { background-color: #10b981; color: rgba(16, 185, 129, 0.4); }
.tool-dot.purple { background-color: #8b5cf6; color: rgba(139, 92, 246, 0.4); }
.tool-dot.blue { background-color: #3b82f6; color: rgba(59, 130, 246, 0.4); }
.tool-dot.orange { background-color: #f97316; color: rgba(249, 115, 22, 0.4); }
.tool-dot.cyan { background-color: #06b6d4; color: rgba(6, 182, 212, 0.4); }
.tool-dot.pink { background-color: #ec4899; color: rgba(236, 72, 153, 0.4); }
.tool-dot.yellow { background-color: #eab308; color: rgba(234, 179, 8, 0.4); }

.tool-suite-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.discord-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.discord-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: #5865f2;
  color: #5865f2;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.2);
}

