/* ================================================================
   Rauf Enç — Yapay Zekâ Araç Atlası
   Accent: Violet (#8b5cf6) — AI & Teknoloji teması
   ================================================================ */

/* ── Proje accent override ── */
:root {
  --accent:      #8b5cf6;
  --accent-soft: rgba(139,92,246,0.12);
  --accent-glow: rgba(139,92,246,0.28);
  --accent-2:    #a78bfa;

  --cat-color-1: #06b6d4; /* Genel AI */
  --cat-color-2: #f472b6; /* Görsel Tasarım */
  --cat-color-3: #f59e0b; /* Video */
  --cat-color-4: #34d399; /* Ses */
  --cat-color-5: #818cf8; /* Sunum */
  --cat-color-6: #fb923c; /* Kodlama */
  --cat-color-7: #e879f9; /* Otomasyon */
  --cat-color-8: #4ade80; /* Yayınlama */
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 70%);
  top: -100px; left: -150px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
  bottom: 50px; right: -100px;
}
.hero-glow-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,164,110,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent-2), var(--accent), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
  background-size: 200%;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
}

.hero-stat-val {
  font-weight: 700;
  color: var(--accent-2);
}

.hero-stat-label {
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-accent:hover {
  background: var(--accent-2);
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--surface);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}

.alt-section {
  background: var(--bg-elevated);
  position: relative;
}
.alt-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.alt-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
  margin-bottom: 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
}

/* ── KATEGORİ GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cat-clr, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.cat-card:hover,
.cat-card.active {
  border-color: var(--cat-clr, var(--accent));
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.cat-card:hover::before,
.cat-card.active::before {
  transform: scaleX(1);
}

.cat-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.cat-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cat-count {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ── TOOLBAR ── */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  flex: 1;
  min-width: 240px;
  color: var(--text-secondary);
  transition: border-color var(--transition-fast);
}

.search-field:focus-within {
  border-color: var(--accent);
  color: var(--text);
}

.search-field input {
  background: none;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  width: 100%;
}

.search-field input::placeholder { color: var(--muted2); }

.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237777a0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.sort-select:focus { border-color: var(--accent); }

.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  user-select: none;
}

.toggle-label input { display: none; }

.toggle-pill {
  width: 40px;
  height: 22px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  position: relative;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.toggle-pill::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: var(--muted2);
  border-radius: 50%;
  top: 2px; left: 2px;
  transition: all var(--transition-fast);
}

.toggle-label input:checked + .toggle-pill {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.toggle-label input:checked + .toggle-pill::after {
  background: var(--accent);
  transform: translateX(18px);
}

/* ── KATEGORİ CHİPLERİ ── */
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

.chip.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-2);
  font-weight: 600;
}

/* ── RESULTS INFO ── */
.results-info {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 24px;
}

/* ── ARAÇ KARTLARI ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  animation: cardIn 0.4s ease both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139,92,246,0.2);
}

.tool-card-top {
  padding: 20px 20px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tool-identity {}

.tool-vendor {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 4px;
}

.tool-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.tool-score-ring {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  position: relative;
}

.tool-score-ring svg {
  transform: rotate(-90deg);
}

.score-ring-bg {
  fill: none;
  stroke: var(--surface2);
  stroke-width: 4;
}

.score-ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease;
}

.score-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 14px;
}

.badge {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-cat {
  background: var(--accent-soft);
  color: var(--accent-2);
  border: 1px solid rgba(139,92,246,0.2);
}

.badge-free {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.2);
}

.badge-level {
  background: var(--surface2);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.badge-price {
  background: rgba(200,164,110,0.1);
  color: var(--warm);
  border: 1px solid rgba(200,164,110,0.2);
}

.tool-card-body {
  padding: 0 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tool-summary {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tool-best-use {
  font-size: 13px;
  line-height: 1.55;
}

.tool-best-use strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  display: block;
  margin-bottom: 4px;
}

/* ── PUAN ÇUBUKLARI ── */
.score-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.score-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-bar-label {
  font-size: 11px;
  color: var(--muted2);
  width: 60px;
  flex-shrink: 0;
}

.score-bar-track {
  flex: 1;
  height: 4px;
  background: var(--surface2);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.8s ease;
}

.score-bar-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 22px;
  text-align: right;
}

/* ── ARTILARI/EKSİLERİ ── */
.tool-details {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.tool-details summary {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted2);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  transition: color var(--transition-fast);
  user-select: none;
}

.tool-details summary::-webkit-details-marker { display: none; }

.tool-details summary::after {
  content: '›';
  font-size: 16px;
  transition: transform var(--transition-fast);
}

.tool-details[open] summary::after {
  transform: rotate(90deg);
}

.tool-details summary:hover { color: var(--accent-2); }

.pros-cons {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pros, .cons {
  background: var(--surface2);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.pros-cons-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pros .pros-cons-label { color: #34d399; }
.cons .pros-cons-label { color: #f87171; }

.pros-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pros-cons li {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.45;
  padding-left: 12px;
  position: relative;
}

.pros li::before { content: '+'; position: absolute; left: 0; color: #34d399; font-weight: 700; }
.cons li::before { content: '–'; position: absolute; left: 0; color: #f87171; font-weight: 700; }

/* ── KART FOOTER ── */
.tool-card-footer {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.link-btn {
  flex: 1;
  min-width: 60px;
  text-align: center;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.link-btn-primary {
  background: var(--accent);
  color: #fff;
}

.link-btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.link-btn-ghost {
  background: var(--surface2);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.link-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

/* ── STACK KARTLARI ── */
.stacks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.stack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.stack-goal {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.stack-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.stack-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.stack-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-tool-chip {
  padding: 4px 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
}

/* ── ATÖLYE TİMLİNE ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px var(--accent-glow);
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all var(--transition-normal);
}

.timeline-content:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(139,92,246,0.12);
}

.timeline-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.timeline-module {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.timeline-duration {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.timeline-goal {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.timeline-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.timeline-meta {
  background: var(--surface2);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.timeline-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 4px;
}

.timeline-meta-val {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── KAYNAKLAR ── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.resource-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resource-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.resource-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.resource-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.resource-why {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  margin-top: 4px;
  transition: gap var(--transition-fast);
}

.resource-link:hover { gap: 10px; }

/* ── DEPLOY GRID ── */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.deploy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deploy-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,92,246,0.15);
}

.deploy-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.deploy-why {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.deploy-pricing {
  font-size: 12px;
  font-weight: 600;
  color: var(--warm);
}

.deploy-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.deploy-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
}

.brand-r { color: var(--text); }
.brand-enc { color: var(--warm); }
.footer-sep { color: var(--muted); }
.footer-sub { color: var(--text-secondary); font-weight: 500; font-size: 13px; }

.footer-meta {
  font-size: 12px;
  color: var(--muted2);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--accent-2); }

/* ── EMPTY STATE ── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSİVE ── */
@media (max-width: 768px) {
  .wrap { width: calc(100% - 32px); }
  .hero { padding: 100px 0 60px; }
  .section { padding: 60px 0; }
  .hero-title { font-size: clamp(28px, 8vw, 44px); }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .cards-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .timeline::before { left: 19px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-dot { width: 40px; height: 40px; font-size: 11px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .toolbar { flex-direction: column; align-items: stretch; }
  .search-field { min-width: unset; }
  .stacks-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .deploy-grid { grid-template-columns: 1fr; }
}

/* ── LIGHT MODE ADJUSTMENTS ── */
html.light {
  --cat-color-1: #0891b2;
  --cat-color-2: #db2777;
  --cat-color-3: #d97706;
}

html.light .hero-glow-1 { opacity: 0.25; }
html.light .hero-glow-2 { opacity: 0.15; }
html.light .hero-glow-3 { opacity: 0.1; }
html.light .btn-accent { box-shadow: 0 4px 16px rgba(139,92,246,0.3); }
