/* ============================================================
   LimeCats – Design System v2 (State of the Art 2026)
   ============================================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Farbsystem */
  --lime-300: #d9f56a;
  --lime-400: #c4e84a;
  --lime-500: #aed62e;
  --lime-600: #8fb51f;
  --ink-900: #0d1009;
  --ink-800: #161a10;
  --ink-700: #1f2417;
  --ink-600: #2b3220;
  --paper: #ffffff;
  --paper-soft: #f6f8f0;
  --line: #e6eadd;
  --muted: #5d6553;
  --muted-light: #8a927c;

  /* Typo */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radius & Shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(13,16,9,.05), 0 4px 12px rgba(13,16,9,.05);
  --shadow-md: 0 2px 4px rgba(13,16,9,.05), 0 12px 32px rgba(13,16,9,.09);
  --shadow-lg: 0 4px 8px rgba(13,16,9,.06), 0 24px 64px rgba(13,16,9,.14);

  --container: 1120px;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ Header (sticky, blur) ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,16,9,0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--lime-300), var(--lime-600));
  display: grid; place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(174,214,46,0.4);
}
.logo-text .accent { color: var(--lime-400); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.92rem; font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.main-nav a.active { color: var(--ink-900); background: var(--lime-400); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(174,214,46,0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(174,214,46,0.12), transparent 55%),
    linear-gradient(160deg, var(--ink-900) 0%, var(--ink-800) 55%, var(--ink-700) 100%);
  color: #fff;
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(174,214,46,0.12);
  border: 1px solid rgba(174,214,46,0.35);
  color: var(--lime-300);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
  max-width: 720px; margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--lime-300), var(--lime-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 560px; margin-bottom: 36px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--lime-300), var(--lime-500));
  color: var(--ink-900);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 14px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(174,214,46,0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(174,214,46,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); box-shadow: none; }

/* Hero Stats */
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .stat b {
  display: block; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: #fff;
}
.hero-stats .stat span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ============ Sections ============ */
.section { padding: 80px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .kicker {
  color: var(--lime-600); text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* Features */
.section-soft { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lime-400); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--lime-300), var(--lime-600));
  display: grid; place-items: center; font-size: 1.2rem;
  margin-bottom: 16px;
}
.feature h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.93rem; }

/* ============ Cards / Artikel-Teaser ============ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img {
  aspect-ratio: 16/9; background: var(--ink-800);
  display: grid; place-items: center;
  font-size: 3rem;
}
.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.card-body h3 a { text-decoration: none; }
.card-body h3 a:hover { color: var(--lime-600); }
.card-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.tag {
  display: inline-block; background: var(--paper-soft);
  border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 3px 14px;
  font-size: 0.75rem; font-weight: 500;
}
.card-rating { color: var(--lime-600); font-weight: 600; font-size: 0.85rem; }
.card.coming-soon { opacity: 0.75; }

/* ============ Artikel-Seite ============ */
.article-hero {
  background: linear-gradient(160deg, var(--ink-900), var(--ink-700));
  color: #fff; padding: 72px 0 56px;
}
.article-hero .container { max-width: 820px; }
.article-hero .kicker {
  color: var(--lime-400); text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; margin-bottom: 14px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
  margin-bottom: 16px;
}
.article-hero .meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.article { max-width: 820px; margin: 0 auto; padding: 56px 24px 96px; }
.article > p { font-size: 1.05rem; margin-bottom: 20px; color: var(--ink-800); }
.article h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; letter-spacing: -0.015em;
  margin: 48px 0 18px; padding-top: 16px;
  scroll-margin-top: 90px;
}
.article h2::before {
  content: ''; display: block; width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--lime-400), var(--lime-600));
  border-radius: 2px; margin-bottom: 14px;
}
.article h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 28px 0 10px; }
.article ul, .article ol { margin: 0 0 20px 4px; list-style: none; }
.article ul li, .article ol li {
  position: relative; padding-left: 26px; margin-bottom: 8px; color: var(--ink-800);
}
.article ul li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--lime-500);
}
.article ol { counter-reset: item; }
.article ol li { counter-increment: item; }
.article ol li::before {
  content: counter(item);
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--paper-soft); border: 1px solid var(--line);
  color: var(--lime-600); font-size: 0.75rem; font-weight: 700;
  display: grid; place-items: center;
}

/* Callout */
.callout {
  background: linear-gradient(135deg, var(--paper-soft), #f0f5df);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px; margin: 32px 0;
}
.callout strong { color: var(--ink-900); }

/* Produkt-Karte */
.product-card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px; margin: 28px 0;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, border-color .25s;
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--lime-400); }
.product-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.product-rank {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lime-300), var(--lime-600));
  color: var(--ink-900); font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center; font-size: 1rem;
}
.product-card h3 { margin: 0; font-size: 1.2rem; }
.product-badge {
  margin-left: auto; background: var(--ink-900); color: var(--lime-300);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.product-specs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 14px;
}
.product-specs span {
  background: var(--paper-soft); border: 1px solid var(--line);
  border-radius: 8px; padding: 4px 12px; font-size: 0.8rem; color: var(--muted);
}
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.pros, .cons { border-radius: var(--r-sm); padding: 16px 18px; font-size: 0.9rem; }
.pros { background: #f0f7e6; border: 1px solid #d8eab8; }
.cons { background: #faf3f3; border: 1px solid #eccfcf; }
.pros b, .cons b { display: block; margin-bottom: 8px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pros li, .cons li { padding-left: 20px; color: var(--ink-800); }
.pros li::before { background: var(--lime-600); }
.cons li::before { background: #d97b7b; }
.btn-buy {
  display: inline-block; margin-top: 6px;
  background: var(--ink-900); color: #fff;
  font-weight: 600; font-size: 0.92rem;
  padding: 12px 24px; border-radius: 12px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-buy:hover { background: var(--ink-600); transform: translateY(-1px); }

/* Tabelle */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--r-md); border: 1px solid var(--line); }
.article table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 640px; }
.article th, .article td { padding: 14px 16px; text-align: left; }
.article thead th {
  background: var(--ink-900); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.article tbody tr:nth-child(even) { background: var(--paper-soft); }
.article tbody tr:hover { background: #f0f5df; }
.article tbody td:first-child { font-weight: 600; }

/* FAQ */
.faq { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin: 24px 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item details { padding: 20px 24px; cursor: pointer; }
.faq-item summary {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--lime-600); transition: transform .2s; }
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item details p { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }

/* Verdict */
.verdict {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  color: #fff; border-radius: var(--r-lg);
  padding: 40px; margin: 40px 0;
}
.verdict h2 { color: #fff; margin-top: 0; }
.verdict h2::before { background: linear-gradient(90deg, var(--lime-300), var(--lime-600)); }
.verdict p { color: rgba(255,255,255,0.8); }
.verdict strong { color: var(--lime-300); }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--lime-600); }
.breadcrumb span::before { content: '/'; margin: 0 8px; color: var(--line); }

/* ============ Footer ============ */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,0.55); padding: 48px 0 32px; }
.site-footer .container { display: flex; flex-direction: column; gap: 16px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; margin-left: 20px; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--lime-400); }
.site-footer p { font-size: 0.82rem; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .feature-grid, .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .feature-grid, .card-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .pros-cons { grid-template-columns: 1fr; }
  .main-nav a { padding: 6px 10px; font-size: 0.85rem; }
  .section { padding: 56px 0; }
  .article { padding: 40px 20px 72px; }
  .verdict { padding: 28px; }
}

/* ============ Dark Mode ============ */
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #12150d;
    --paper-soft: #191d12;
    --line: #2a3020;
    --muted: #9aa38a;
    --ink-800: #e8ecdd;
    --ink-900: #f2f5e8;
  }
  body { background: var(--paper); }
  .feature, .card, .product-card { background: #161a10; }
  .callout { background: linear-gradient(135deg, #1a1f12, #20270f); }
  .pros { background: #17210d; border-color: #2c3a16; }
  .cons { background: #241313; border-color: #3a1c1c; }
  .tag { background: #1d2313; border-color: #2c3420; }
  .faq-item details p { color: var(--muted); }
}
