/* feltbots.com Marketing Site Styles */
:root {
  --bg-base: #1a1a2e;
  --bg-card: #16213e;
  --bg-elevated: #0f3460;
  --bg-surface: #1e2a4a;
  --accent-red: #e94560;
  --accent-teal: #03dac6;
  --accent-gold: #ffd700;
  --text-primary: #e0e0e0;
  --text-muted: #8b949e;
  --text-bright: #ffffff;
  --felt-green: #1a7a1a;
  --border: #30363d;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
.hidden { display: none !important; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-bright);
}

.nav-brand img {
  height: 36px;
  width: 36px;
  display: block;
}

.nav-brand .nav-name {
  color: var(--text-bright);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Footer "A Draagon product" — clean text link, no dotted underline */
.footer-parent {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer-parent a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-parent a:hover {
  color: var(--text-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-bright);
}

.nav-links a.active {
  color: var(--text-bright);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-red);
  color: var(--text-bright);
}

.btn-primary:hover {
  background: #d63651;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
}

.btn-secondary:hover {
  background: rgba(3, 218, 198, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-block;
  background: rgba(3, 218, 198, 0.1);
  border: 1px solid rgba(3, 218, 198, 0.3);
  color: var(--accent-teal);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background: var(--bg-card);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--text-bright);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent-red);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card .tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .price-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-card li {
  padding: 0.375rem 0;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.pricing-card li::before {
  content: "\2713";
  color: var(--accent-teal);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* Leaderboard Table */
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.leaderboard-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.leaderboard-table tr:hover {
  background: rgba(3, 218, 198, 0.05);
}

.leaderboard-table .rank {
  font-weight: 700;
  color: var(--text-muted);
  width: 3rem;
}

.leaderboard-table .rank-1 { color: var(--accent-gold); }
.leaderboard-table .rank-2 { color: #c0c0c0; }
.leaderboard-table .rank-3 { color: #cd7f32; }

.leaderboard-table .model-name {
  font-weight: 600;
  color: var(--text-bright);
}

.leaderboard-table .provider {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.leaderboard-table .rating {
  font-weight: 700;
  color: var(--accent-teal);
}

.leaderboard-table .stat {
  color: var(--text-muted);
}

/* Code Block */
.code-block {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow-x: auto;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.code-block .comment { color: #6a737d; }
.code-block .keyword { color: #ff7b72; }
.code-block .string { color: #a5d6ff; }
.code-block .func { color: #d2a8ff; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--text-bright);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Content */
.content-prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.content-prose h2 {
  color: var(--text-bright);
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content-prose h3 {
  color: var(--text-bright);
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-prose p {
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.content-prose ul, .content-prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-prose li {
  margin-bottom: 0.5rem;
}

.content-prose a {
  color: var(--accent-teal);
  text-decoration: none;
}

.content-prose a:hover {
  text-decoration: underline;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.blog-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

.blog-card .tag {
  display: inline-block;
  background: rgba(233, 69, 96, 0.15);
  color: var(--accent-red);
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  color: var(--text-bright);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-card .date {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.3rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-teal);
  border: 2px solid var(--bg-base);
}

.timeline-item .year {
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.timeline-item h3 {
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-teal);
}

.stat-item .stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Schedule */
.schedule-list {
  max-width: 800px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.schedule-item:hover {
  border-color: var(--accent-teal);
}

.schedule-date {
  text-align: center;
  min-width: 60px;
}

.schedule-date .day {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-bright);
}

.schedule-date .month {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.schedule-info h3 {
  color: var(--text-bright);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.schedule-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.schedule-meta {
  margin-left: auto;
  text-align: right;
}

.schedule-meta .time {
  color: var(--accent-teal);
  font-weight: 600;
}

.schedule-meta .type {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(3, 218, 198, 0.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
  .hero { padding: 3rem 1rem 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .schedule-item { flex-direction: column; text-align: center; }
  .schedule-meta { margin-left: 0; text-align: center; }
  .section-title { font-size: 1.5rem; }
  .page-header h1 { font-size: 1.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
}
