@import './theme.css';

.docs-page {
  padding-top: 64px;
}

.docs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  backdrop-filter: blur(8px);
}

.docs-logo.brand-wordmark {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.docs-logo .brand-kick {
  color: var(--kick-green);
}

.docs-nav a:has(> .site-brand):hover {
  text-decoration: none;
  opacity: 0.9;
}

.docs-nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.docs-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.hero-badge {
  display: inline-block;
  background: rgba(83, 252, 24, 0.15);
  color: var(--kick-green);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.offer-hero {
  text-align: center;
  padding: 0.5rem 0 2.5rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.offer-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.offer-hero .highlight { color: var(--kick-green); }

.offer-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.offer-block { margin-bottom: 3rem; }

.offer-heading {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.offer-sub {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.offer-feature-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card) 0%, #141414 100%);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.offer-feature-card:hover {
  border-color: rgba(83, 252, 24, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.offer-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  color: var(--kick-green);
}

.offer-feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.offer-category { margin-bottom: 2.5rem; }

.offer-category-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kick-green);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.offer-widget-card .widget-thumb-preview {
  height: 200px;
}

.offer-widget-card .widget-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.offer-widget-card .widget-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  min-height: 0;
}

.offer-cta {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem;
}

.card-accent {
  border-color: rgba(83, 252, 24, 0.35);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(83, 252, 24, 0.05) 100%);
}

.muted { color: var(--text-muted); }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.guide-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card) 0%, #141414 100%);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.guide-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--kick-green);
}

.guide-summary {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.guide-steps {
  margin: 0 0 0.85rem 1.1rem;
  padding: 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
}

.guide-steps li { margin-bottom: 0.35rem; }

.guide-notes {
  margin: 0;
  padding: 0.75rem 0 0 1rem;
  list-style: disc;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  border-top: 1px solid var(--border);
}

.guide-notes li { margin-bottom: 0.25rem; }
