/*
 * Non-critical global CSS — loaded after LCP via media="print" onload trick.
 * Moved here from Layout.astro <style is:global> to reduce inline CSS in the
 * critical rendering path (~36 KB → ~30 KB). Rules below are NOT needed for
 * above-fold content on any page; the critical inline CSS block in Layout.astro
 * already covers :root, resets, hero, platform-cover, and .btn-primary for
 * above-fold first-paint.
 *
 * Duplicate resets (*, html, body, img/svg, a) were removed entirely — they
 * are already in the critical inline CSS block.
 */

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

/* Global Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--accent-lime);
  color: var(--bg);
  border: none;
  box-shadow: 0 4px 20px var(--accent-lime-shadow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: transparent;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px oklch(0.74 0.12 248 / 0.5);
  background: oklch(0.80 0.13 248);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.btn-large {
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-lg);
}

/* Section Title Styles */
.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  text-align: center;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-8);
}
