/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #09090b;
  --bg-alt: #0c0c0f;
  --bg-card: #111114;
  --text: #fafafa;
  --text-muted: #71717a;
  --text-secondary: #a1a1aa;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent2: #22d3ee;
  --accent3: #f472b6;
  --green: #22c55e;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-sans: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }
a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== LOADER ===== */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s var(--spring), visibility 0.6s; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-bar { width: 120px; height: 2px; background: var(--border); border-radius: 1px; margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.loader-bar::after { content: ''; position: absolute; top: 0; left: 0; width: 40%; height: 100%; background: var(--accent); border-radius: 1px; animation: loaderSlide 1.2s ease-in-out infinite; }
@keyframes loaderSlide { 0% { left: -40%; } 100% { left: 100%; } }
.loader-text { font-size: 0.85rem; letter-spacing: 0.3em; color: var(--text-muted); font-weight: 500; }

/* ===== CURSOR GLOW ===== */
.cursor-glow { position: fixed; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.05), transparent 70%); border-radius: 50%; pointer-events: none; z-index: 1; transform: translate(-50%, -50%); will-change: left, top; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2.5rem; background: rgba(9,9,11,0.5); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: all 0.3s var(--spring); }
.nav.scrolled { background: rgba(9,9,11,0.85); backdrop-filter: blur(20px) saturate(180%); border-bottom-color: var(--border); }
.nav-left { display: flex; align-items: center; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta { padding: 0.5rem 1.1rem; background: var(--accent); color: #fff; font-size: 0.8rem; font-weight: 500; border-radius: 8px; transition: all 0.2s var(--spring); }
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); color: #fff; }
.nav-menu-btn { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; cursor: pointer; position: relative; background: none; border: none; }
.nav-menu-btn span { position: absolute; width: 20px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.nav-menu-btn span:nth-child(1) { transform: translateY(-6px); }
.nav-menu-btn span:nth-child(2) { transform: translateY(6px); }
.nav-menu-btn.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-menu-btn.active span:nth-child(2) { transform: translateY(0) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; background: rgba(9,9,11,0.97); backdrop-filter: blur(24px); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateY(-100%); transition: transform 0.4s var(--spring); }
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a { font-size: 1.3rem; color: var(--text-muted); }
.mobile-menu a:hover { color: var(--text); }
.mobile-cta { padding: 0.8rem 2rem; background: var(--accent); color: #fff !important; border-radius: 8px; font-weight: 500; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .nav { padding: 0.8rem 1.2rem; }
}

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; padding: 6rem 2rem 4rem; overflow: hidden; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99,102,241,0.15), transparent), radial-gradient(ellipse 60% 40% at 80% 50%, rgba(34,211,238,0.08), transparent), radial-gradient(ellipse 60% 40% at 20% 50%, rgba(244,114,182,0.08), transparent); z-index: 0; transition: all 0.15s ease-out; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); z-index: 0; }

.hero-content { text-align: center; max-width: 800px; z-index: 1; margin-bottom: 2.5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: var(--border); border: 1px solid var(--border-hover); border-radius: 100px; font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 2rem; }
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.title-line { display: block; }
.gradient-text { background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.65; max-width: 540px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.75rem 1.6rem; background: var(--accent); color: #fff; font-size: 0.85rem; font-weight: 500; border-radius: 10px; transition: all 0.2s var(--spring); position: relative; overflow: hidden; border: none; cursor: pointer; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent2), var(--accent3)); opacity: 0; transition: opacity 0.3s; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.3); color: #fff; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.75rem 1.6rem; background: rgba(255,255,255,0.04); color: var(--text); font-size: 0.85rem; font-weight: 500; border-radius: 10px; border: 1px solid var(--border-hover); transition: all 0.2s var(--spring); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

.btn-outline { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.75rem 1.6rem; background: transparent; color: var(--text); font-size: 0.85rem; font-weight: 500; border-radius: 10px; border: 1px solid var(--border-hover); transition: all 0.2s var(--spring); }
.btn-outline:hover { background: rgba(255,255,255,0.04); border-color: var(--accent); color: var(--accent-light); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }

/* Terminal */
.hero-terminal { width: 100%; max-width: 640px; background: rgba(15,15,18,0.9); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; z-index: 1; backdrop-filter: blur(8px); }
.terminal-header { display: flex; align-items: center; padding: 0.6rem 1rem; border-bottom: 1px solid var(--border); }
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots .dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dots .dot.red { background: #ef4444; }
.terminal-dots .dot.yellow { background: #eab308; }
.terminal-dots .dot.green { background: #22c55e; }
.terminal-title { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); margin-left: 0.8rem; }
.terminal-body { padding: 1rem 1.2rem; font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.6; }
.terminal-line { display: flex; align-items: center; gap: 0.5rem; }
.prompt { color: var(--accent2); font-weight: 600; }
.cmd { color: var(--text-secondary); }
.cursor { color: var(--accent); animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.terminal-output { color: var(--text-muted); font-size: 0.75rem; margin-top: 0.3rem; line-height: 1.5; padding-left: 1.5rem; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.8rem; z-index: 1; }
.scroll-indicator { width: 20px; height: 30px; border: 1.5px solid var(--border-hover); border-radius: 10px; position: relative; }
.scroll-dot { width: 3px; height: 6px; background: var(--accent); border-radius: 1.5px; position: absolute; top: 4px; left: 50%; transform: translateX(-50%); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { top: 4px; opacity: 1; } 100% { top: 18px; opacity: 0; } }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-muted); }

@media (max-width: 768px) {
  .hero { padding: 5rem 1.2rem 3rem; }
  .hero-terminal { max-width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* ===== LOGOS MARQUEE ===== */
.logos-section { padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); overflow: hidden; position: relative; z-index: 2; }
.logos-track { display: flex; overflow: hidden; }
.logos-slide { display: flex; gap: 2rem; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; white-space: nowrap; animation: marquee 40s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; color: var(--accent); padding: 0.3rem 1rem; border: 1px solid rgba(99,102,241,0.3); border-radius: 100px; margin-bottom: 1.2rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 1rem auto 0; line-height: 1.6; }

/* ===== PLATFORMS ===== */
.platforms { padding: 6rem 0; position: relative; z-index: 2; }

.platform-category { margin-bottom: 4rem; }
.platform-category:last-child { margin-bottom: 0; }

.category-label {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 1.2rem;
  padding-left: 0.2rem;
}
.category-label svg { color: var(--accent-light); }

.platform-row { display: grid; gap: 1.2rem; }
.platform-row.three { grid-template-columns: repeat(3, 1fr); }
.platform-row.two { grid-template-columns: repeat(2, 1fr); }

/* Platform Card */
.pcard {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--spring);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}
.pcard:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); color: var(--text); }

.pcard-glow { position: absolute; width: 200px; height: 200px; border-radius: 50%; filter: blur(60px); opacity: 0; transition: opacity 0.4s; pointer-events: none; top: -30%; right: -20%; }
.pcard:hover .pcard-glow { opacity: 1; }
.pcard[data-brand="claude"] .pcard-glow { background: rgba(217,119,6,0.12); }
.pcard[data-brand="openai"] .pcard-glow { background: rgba(16,163,127,0.12); }
.pcard[data-brand="cursor"] .pcard-glow { background: rgba(99,102,241,0.12); }
.pcard[data-brand="github"] .pcard-glow { background: rgba(255,255,255,0.08); }
.pcard[data-brand="replit"] .pcard-glow { background: rgba(244,114,182,0.12); }
.pcard[data-brand="anthropic"] .pcard-glow { background: rgba(217,119,6,0.12); }
.pcard[data-brand="ollama"] .pcard-glow { background: rgba(255,255,255,0.06); }
.pcard[data-brand="hf"] .pcard-glow { background: rgba(255,221,0,0.1); }
.pcard[data-brand="langchain"] .pcard-glow { background: rgba(34,197,94,0.12); }
.pcard[data-brand="replicate"] .pcard-glow { background: rgba(99,102,241,0.12); }
.pcard[data-brand="midjourney"] .pcard-glow { background: rgba(168,85,247,0.12); }
.pcard[data-brand="runway"] .pcard-glow { background: rgba(34,211,238,0.12); }
.pcard[data-brand="vercel"] .pcard-glow { background: rgba(255,255,255,0.06); }
.pcard[data-brand="supabase"] .pcard-glow { background: rgba(34,197,94,0.12); }
.pcard[data-brand="perplexity"] .pcard-glow { background: rgba(34,211,238,0.12); }

.pcard-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.pcard-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.pcard-arrow { font-size: 1.1rem; color: var(--text-muted); transition: all 0.2s var(--spring); }
.pcard:hover .pcard-arrow { color: var(--accent-light); transform: translateX(4px); }

.pcard-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.pcard.featured .pcard-title { font-size: 1.5rem; }
.pcard-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.pcard.featured .pcard-desc { font-size: 0.9rem; }

.pcard-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
.pcard-tags span { padding: 0.2rem 0.55rem; font-size: 0.68rem; font-weight: 500; color: var(--text-secondary); background: var(--border); border-radius: 6px; letter-spacing: 0.01em; }

.pcard-stats { display: flex; gap: 2rem; margin-bottom: 0.8rem; }
.ps { display: flex; flex-direction: column; }
.ps strong { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.ps span { font-size: 0.72rem; color: var(--text-muted); }

.pcard-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: auto; }
.pcard-links span { font-size: 0.75rem; color: var(--accent-light); font-weight: 500; transition: color 0.2s; }
.pcard:hover .pcard-links span { color: var(--accent2); }

@media (max-width: 768px) {
  .platforms { padding: 4rem 0; }
  .platform-row.three, .platform-row.two { grid-template-columns: 1fr; }
  .platform-category { margin-bottom: 3rem; }
}

/* ===== SKILL SITES ===== */
.skills-section { padding: 6rem 0; position: relative; z-index: 2; background: var(--bg-alt); }

.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.skill-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--spring);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}
.skill-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); color: var(--text); }

.skill-glow { position: absolute; width: 200px; height: 200px; border-radius: 50%; filter: blur(60px); opacity: 0; transition: opacity 0.4s; pointer-events: none; top: -30%; right: -20%; }
.skill-card:hover .skill-glow { opacity: 1; }
.skill-card[data-brand="github"] .skill-glow { background: rgba(255,255,255,0.08); }
.skill-card[data-brand="npm"] .skill-glow { background: rgba(203,56,56,0.12); }
.skill-card[data-brand="pypi"] .skill-glow { background: rgba(55,118,171,0.12); }
.skill-card[data-brand="vscode"] .skill-glow { background: rgba(0,122,204,0.12); }
.skill-card[data-brand="hf"] .skill-glow { background: rgba(255,221,0,0.1); }
.skill-card[data-brand="docker"] .skill-glow { background: rgba(0,135,213,0.12); }

.skill-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.skill-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.skill-arrow { font-size: 1.1rem; color: var(--text-muted); transition: all 0.2s var(--spring); }
.skill-card:hover .skill-arrow { color: var(--accent-light); transform: translateX(4px); }

.skill-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.skill-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }

.skill-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.skill-tags span { padding: 0.2rem 0.55rem; font-size: 0.68rem; font-weight: 500; color: var(--text-secondary); background: var(--border); border-radius: 6px; letter-spacing: 0.01em; }

@media (max-width: 768px) {
  .skills-section { padding: 4rem 0; }
  .skills-grid { grid-template-columns: 1fr; }
}

/* ===== WORKFLOW ===== */
.workflow { padding: 6rem 0; position: relative; z-index: 2; background: var(--bg-alt); }

.workflow-pipeline { display: flex; align-items: center; justify-content: center; gap: 0; padding: 2rem 0; overflow-x: auto; }

.wf-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1rem 1.2rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); min-width: 100px; transition: all 0.3s var(--spring); cursor: default;
}
.wf-step:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(99,102,241,0.2); }
.wf-icon-wrap { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: rgba(99,102,241,0.1); border-radius: 8px; color: var(--accent-light); transition: all 0.3s; }
.wf-step:hover .wf-icon-wrap { background: rgba(99,102,241,0.2); transform: scale(1.1); }
.wf-label { font-size: 0.82rem; font-weight: 600; }
.wf-tool { font-size: 0.65rem; color: var(--text-muted); font-family: var(--font-mono); }

.wf-arrow { width: 32px; display: flex; align-items: center; }
.wf-arrow-line { width: 100%; height: 1px; background: var(--border); position: relative; }
.wf-arrow-line::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid var(--border-hover); border-top: 1px solid var(--border-hover); transform: rotate(45deg); }

@media (max-width: 768px) {
  .workflow { padding: 4rem 0; }
  .workflow-pipeline { flex-direction: column; align-items: stretch; }
  .wf-arrow { width: 2px; height: 32px; margin: 0 auto; }
  .wf-arrow-line { width: 2px; height: 100%; }
  .wf-arrow-line::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
}

/* ===== RESOURCES ===== */
.resources { padding: 6rem 0; position: relative; z-index: 2; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.res-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.8rem;
  transition: all 0.35s var(--spring); cursor: pointer; text-decoration: none; color: var(--text);
}
.res-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); color: var(--text); }
.res-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.res-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.res-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.res-link { font-size: 0.78rem; color: var(--accent-light); font-weight: 500; margin-top: auto; transition: color 0.2s; }
.res-card:hover .res-link { color: var(--accent2); }

@media (max-width: 768px) {
  .resources { padding: 4rem 0; }
  .res-grid { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta { padding: 6rem 0; position: relative; z-index: 2; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb-1 { width: 500px; height: 500px; background: rgba(99,102,241,0.1); top: 20%; left: 10%; animation: orbFloat 10s ease-in-out infinite; }
.cta-orb-2 { width: 400px; height: 400px; background: rgba(34,211,238,0.06); bottom: 10%; right: 15%; animation: orbFloat 10s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -20px); } }

.cta-content { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1rem; }
.cta-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.cta-stats { display: flex; justify-content: center; gap: 3rem; }
.cta-stat { display: flex; flex-direction: column; align-items: center; }
.cta-stat strong { font-size: 1.4rem; font-weight: 800; color: var(--accent-light); }
.cta-stat span { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .cta { padding: 4rem 0; }
  .cta-actions { flex-direction: column; }
  .cta-stats { flex-direction: column; gap: 1rem; }
}

/* ===== FOOTER ===== */
.footer { padding: 3rem 0 2rem; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.footer-top { display: flex; justify-content: space-between; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text); margin-bottom: 0.3rem; }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); }
.footer-cols { display: flex; gap: 2.5rem; }
.footer-col h4 { font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 0.7rem; }
.footer-col a { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.35rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; font-size: 0.72rem; color: var(--text-muted); }
.footer-note { font-size: 0.68rem; }

@media (max-width: 768px) {
  .footer-top { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--spring), transform 0.7s var(--spring); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== Animated gradient border ===== */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }