/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a, .nav-links button {
  text-decoration: none;
  color: #64748B;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus { color: #0F172A; outline: none; }
.nav-links a:focus-visible,
.nav-links button:focus-visible {
  outline: 2px solid #6366F1;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Dropdown - click/keyboard friendly */
.dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  min-width: 200px;
  z-index: 100;
  border: 1px solid #E2E8F0;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid #F1F5F9;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover,
.dropdown-menu a:focus { background: #F8FAFC; outline: none; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white !important;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: -0.2px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid #6366F1;
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: #475569 !important;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.btn-secondary:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { display: block; width: 100%; text-align: center; }

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

.hero-badge {
  display: inline-block;
  background: #EEF2FF;
  color: #6366F1;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  color: #0F172A;
  margin-bottom: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #94A3B8;
}

/* Demo Preview */
.demo-preview {
  display: flex;
  justify-content: center;
  margin: -20px 0 80px;
}

.demo-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  max-width: 520px;
  width: 100%;
  border: 1px solid #E2E8F0;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F1F5F9;
}

.demo-score {
  font-size: 2.2rem;
  font-weight: 700;
  color: #6366F1;
  letter-spacing: -1px;
}

.demo-label {
  color: #64748B;
  font-size: 0.9rem;
}

.feedback-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}

.feedback-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

.feedback-icon.good { background: #DCFCE7; color: #16A34A; }
.feedback-icon.warning { background: #FEF3C7; color: #D97706; }

/* Features */
.features {
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 56px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #0F172A;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-card p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Comparison */
.comparison {
  padding: 80px 0;
}

.comparison h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.comparison-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 28px;
  border-bottom: 1px solid #F1F5F9;
}

.comparison-row.header {
  background: #F8FAFC;
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row div { text-align: center; }
.comparison-row div:first-child { text-align: left; }

.yes { color: #16A34A; font-weight: 600; }
.no { color: #DC2626; }
.partial { color: #D97706; }

/* Testimonial */
.testimonial {
  text-align: center;
  padding: 72px 32px;
  background: white;
  border-radius: 20px;
  margin: 60px 0;
  border: 1px solid #E2E8F0;
}

.testimonial blockquote {
  font-size: 1.6rem;
  color: #0F172A;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-weight: 400;
}

.testimonial-author {
  color: #64748B;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  padding: 72px 32px;
  border-radius: 20px;
  margin: 60px 0;
}

.cta-section h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 700;
}
.cta-section p {
  margin-bottom: 32px;
  opacity: 0.9;
  font-size: 1.05rem;
}
.cta-section .btn-primary {
  background: white;
  color: #6366F1 !important;
}
.cta-section .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 48px 0;
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #0F172A; }

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
  margin-bottom: 24px;
}

.card h2 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Forms */
textarea {
  width: 100%;
  min-height: 220px;
  padding: 18px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  background: #FAFBFC;
  transition: all 0.2s;
}

textarea:focus {
  outline: none;
  border-color: #6366F1;
  background: white;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #475569;
  font-size: 0.9rem;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #FAFBFC;
  transition: all 0.2s;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #6366F1;
  background: white;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Auth Pages */
.auth-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.auth-card {
  background: white;
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid #E2E8F0;
}

.auth-card h1 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
}
.auth-subtitle {
  text-align: center;
  color: #64748B;
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.auth-footer {
  text-align: center;
  margin-top: 28px;
  color: #64748B;
  font-size: 0.9rem;
}
.auth-footer a {
  color: #6366F1;
  text-decoration: none;
  font-weight: 600;
}

.error-message {
  color: #DC2626;
  text-align: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

/* Dashboard */
.user-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
  flex-wrap: wrap;
}

.usage-badge {
  background: #EEF2FF;
  color: #6366F1;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-badge {
  background: #F1F5F9;
  color: #64748B;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-badge.pro { background: #DCFCE7; color: #16A34A; }

/* Results */
.results-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
}

.score-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 28px;
}

.big-score {
  font-size: 3.5rem;
  font-weight: 700;
  color: #6366F1;
  letter-spacing: -2px;
}

.grade-badge {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 20px;
  background: #EEF2FF;
  color: #6366F1;
  border-radius: 10px;
}

.result-section {
  margin-bottom: 32px;
}

.result-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #0F172A;
  font-size: 1.1rem;
  font-weight: 600;
}

.result-section .score {
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.result-list li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: #475569;
  font-size: 0.95rem;
}

.result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: #6366F1;
  border-radius: 50%;
}

.top-fixes {
  background: #FFFBEB;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #FEF3C7;
}

.top-fixes h4 {
  color: #92400E;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.top-fixes ol {
  margin-left: 20px;
  color: #78350F;
}

.top-fixes li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.encouragement {
  background: #F0FDF4;
  color: #166534;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #DCFCE7;
}

/* Loading */
.loading {
  text-align: center;
  padding: 60px;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid #E2E8F0;
  border-top-color: #6366F1;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Pricing */
.pricing-header {
  text-align: center;
  padding: 60px 20px;
}

.pricing-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.pricing-header p {
  color: #64748B;
  font-size: 1.1rem;
}

.pricing-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  width: 340px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid #6366F1;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #64748B;
  font-weight: 600;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #0F172A;
  letter-spacing: -1px;
}

.price-period {
  text-align: center;
  color: #94A3B8;
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card li {
  padding: 12px 0;
  color: #475569;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.95rem;
}

.pricing-card li:last-child { border-bottom: none; }

.pricing-card li::before {
  content: "—";
  color: #6366F1;
  font-weight: 700;
  margin-right: 10px;
}

/* 4-column pricing grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.pricing-cards-grid .pricing-card {
  width: auto;
  padding: 32px 24px;
}

.plan-highlight {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

/* Plan comparison section */
.plan-comparison {
  margin: 60px 0;
}

.plan-comparison h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.8rem;
  font-weight: 700;
}

.plan-comparison .comparison-row {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

/* Use cases section */
.use-cases {
  margin: 60px 0;
}

.use-cases h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.8rem;
  font-weight: 700;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.use-case-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #E2E8F0;
}

.use-case-card h4 {
  color: #6366F1;
  margin-bottom: 8px;
  font-size: 1rem;
}

.use-case-card p {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Discord banner */
.discord-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  color: white;
  padding: 32px 40px;
  border-radius: 16px;
  margin: 40px 0;
}

.discord-banner h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.discord-banner p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.discord-banner .btn-discord {
  background: white;
  color: #5865F2 !important;
}

/* Word count warning */
.word-limit-warning {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  color: #92400E;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.word-limit-error {
  background: #FEE2E2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-comparison .comparison-row {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .discord-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .plan-comparison .comparison-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    padding: 12px;
    font-size: 0.75rem;
  }
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tab {
  padding: 12px 24px;
  background: #F1F5F9;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.tab.active {
  background: #6366F1;
  color: white;
}

/* History */
.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #F1F5F9;
}

.history-item:last-child { border-bottom: none; }

.history-snippet {
  flex: 1;
  color: #64748B;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 20px;
}

.history-score {
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
}

.history-score.high { background: #DCFCE7; color: #16A34A; }
.history-score.medium { background: #FEF3C7; color: #D97706; }
.history-score.low { background: #FEE2E2; color: #DC2626; }

/* Discord Navbar Button */
.btn-discord-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #5865F2;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-discord-nav:hover {
  background: #4752C4;
  transform: translateY(-1px);
}

/* Discord Community Section */
.discord-community {
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 60px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.discord-community::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.discord-community-content {
  position: relative;
  z-index: 1;
}

.discord-icon-large {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.discord-community h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.discord-community > .discord-community-content > p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.discord-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}

.discord-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.btn-discord-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #5865F2 !important;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-discord-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.discord-subtext {
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Floating Discord Button */
.floating-discord {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #5865F2;
  color: white !important;
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-discord:hover {
  background: #4752C4;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.5);
  animation: none;
}

.floating-discord svg {
  flex-shrink: 0;
}

/* Footer Discord */
.footer-discord {
  color: #5865F2 !important;
  font-weight: 600;
}

/* Discord CTA */
.discord-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  color: white;
  padding: 20px 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.discord-cta .discord-icon {
  font-size: 1.5rem;
}

.discord-cta div {
  flex: 1;
}

.discord-cta strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.discord-cta p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5865F2;
  color: white !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

.discord-cta .btn-discord {
  background: white;
  color: #5865F2 !important;
}

.discord-cta .btn-discord:hover {
  background: #F8FAFC;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-discord {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: white !important;
}

.cta-section .btn-discord:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Arguments grid - responsive */
.args-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .args-grid { grid-template-columns: 1fr; }
}
.text-success { color: #16A34A; margin-bottom: 8px; }
.text-danger { color: #DC2626; margin-bottom: 8px; }

/* Utility */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-20 { margin-top: 24px; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .navbar { flex-direction: column; gap: 20px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .comparison-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 0.8rem; padding: 14px 16px; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .container { padding: 16px; }
  /* Dashboard results - stack on mobile */
  .result-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .score-header { flex-direction: column; text-align: center; }
  .discord-community { padding: 40px 20px; }
  .discord-stats { flex-direction: column; gap: 20px; }
  .cta-buttons { flex-direction: column; }
}
