/*
Theme Name: Aktienrecherche
Theme URI: https://aktienrecherche.de/
Author: Aktienrecherche
Author URI: https://aktienrecherche.de/
Description: Eigenständiges WordPress-Theme für Aktienrecherche.de – Anleihen-Recherche mit KI. Dunkles Produkt-Design mit Hero-Suche, Anleihen-Datenbank, Quellen-Übersicht, Preisbereich, FAQ und Rechtsseiten. Arbeitet mit dem Plugin „Aktienrecherche – Anleihen-Datenbank & KI-Tiefenprüfung" zusammen.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aktienrecherche
Tags: business, finance, dark, one-column, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   1. Design-Tokens
   ========================================================================== */
:root {
  --ar-bg: #0a1628;
  --ar-bg-2: #0e1e33;
  --ar-surface: #12283f;
  --ar-surface-2: #16304c;
  --ar-line: rgba(148, 163, 184, .16);
  --ar-line-strong: rgba(148, 163, 184, .28);
  --ar-ink: #e8eef7;
  --ar-ink-dim: #c3d1e2;
  --ar-muted: #90a5be;
  --ar-green: #22c55e;
  --ar-green-2: #4ade80;
  --ar-blue: #2563eb;
  --ar-blue-2: #3b82f6;
  --ar-amber: #f59e0b;
  --ar-red: #ef4444;

  /* helle Sektionen */
  --ar-light-bg: #f6f8fb;
  --ar-light-surface: #ffffff;
  --ar-light-ink: #0f2440;
  --ar-light-muted: #55708f;
  --ar-light-line: #e2e8f0;

  --ar-radius: 16px;
  --ar-radius-lg: 22px;
  --ar-shadow: 0 20px 46px rgba(2, 8, 20, .45);
  --ar-shadow-light: 0 14px 34px rgba(15, 36, 64, .08);
  --ar-wrap: 1220px;
  --ar-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ==========================================================================
   2. Grundlagen
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ar-bg);
  color: var(--ar-ink);
  font-family: var(--ar-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ar-green-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { color: #fff; letter-spacing: -.025em; line-height: 1.18; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; padding: 10px 16px; background: var(--ar-green); color: #04240f; border-radius: 8px; }

:focus-visible { outline: 2px solid var(--ar-green); outline-offset: 3px; }

.ar-wrap { width: min(calc(100% - 40px), var(--ar-wrap)); margin-inline: auto; }
.ar-center { text-align: center; }
.ar-center .ar-lead { margin-inline: auto; }

.ar-section { padding: 84px 0; }
.ar-section--light { background: var(--ar-light-bg); color: var(--ar-light-ink); }
.ar-section--white { background: var(--ar-light-surface); color: var(--ar-light-ink); }
.ar-section--light h1, .ar-section--light h2, .ar-section--light h3,
.ar-section--white h1, .ar-section--white h2, .ar-section--white h3 { color: var(--ar-light-ink); }
.ar-section--light a, .ar-section--white a { color: #0f7a3d; }

.ar-kicker { display: inline-block; color: var(--ar-green-2); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; font-size: .8rem; margin-bottom: 10px; }
.ar-section--light .ar-kicker, .ar-section--white .ar-kicker { color: #0f7a3d; }
.ar-section-title { font-size: clamp(1.75rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.ar-lead { color: var(--ar-muted); font-size: 1.06rem; max-width: 68ch; }
.ar-section--light .ar-lead, .ar-section--white .ar-lead { color: var(--ar-light-muted); }

/* ==========================================================================
   3. Buttons (identische Tokens wie im Plugin)
   ========================================================================== */
.ar-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 12px;
  border: 1px solid transparent; font-weight: 700; font-size: .97rem;
  cursor: pointer; text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.ar-btn:hover { transform: translateY(-1px); }
.ar-btn--primary { background: linear-gradient(135deg, var(--ar-green), #16a34a); color: #04240f; box-shadow: 0 10px 26px rgba(34, 197, 94, .26); }
.ar-btn--blue { background: linear-gradient(135deg, var(--ar-blue-2), var(--ar-blue)); color: #fff; box-shadow: 0 10px 26px rgba(37, 99, 235, .3); }
.ar-btn--ghost { background: rgba(255, 255, 255, .05); border-color: var(--ar-line-strong); color: var(--ar-ink); }
.ar-btn--outline-dark { background: transparent; border-color: var(--ar-light-line); color: var(--ar-light-ink); }
.ar-btn--full { width: 100%; }
.ar-btn--lg { min-height: 54px; font-size: 1.02rem; padding: 0 26px; }

/* ==========================================================================
   4. Header
   ========================================================================== */
.ar-site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ar-line);
}
.ar-header-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.ar-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.18rem; font-weight: 800; letter-spacing: -.03em; color: #fff; text-decoration: none !important; }
.ar-brand:hover { color: #fff; }
.ar-brand-mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(145deg, var(--ar-green), #15803d); box-shadow: 0 6px 18px rgba(34, 197, 94, .3); flex: none; }
.ar-brand-mark svg { width: 20px; height: 20px; }
.ar-brand em { font-style: normal; color: var(--ar-green-2); }

.ar-nav { display: flex; align-items: center; gap: 22px; font-size: .94rem; font-weight: 600; }
.ar-nav a { color: var(--ar-ink-dim); text-decoration: none; }
.ar-nav a:hover { color: #fff; }
.ar-nav ul { list-style: none; display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; }
.ar-nav .ar-btn { color: #04240f; }
.ar-nav-actions { display: flex; align-items: center; gap: 14px; }

.ar-menu-toggle { display: none; border: 1px solid var(--ar-line-strong); background: rgba(255, 255, 255, .04); border-radius: 10px; padding: 9px; cursor: pointer; color: var(--ar-ink); }

/* ==========================================================================
   5. Hero
   ========================================================================== */
.ar-hero {
  position: relative; overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(900px 420px at 78% 12%, rgba(37, 99, 235, .20), transparent 62%),
    radial-gradient(700px 360px at 12% 88%, rgba(34, 197, 94, .13), transparent 60%),
    linear-gradient(180deg, #0a1628 0%, #0d1f36 100%);
}
.ar-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(148, 163, 184, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 420px at 50% 0%, #000 20%, transparent 78%);
}
.ar-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.ar-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); line-height: 1.06; margin-bottom: 18px; }
.ar-hero h1 em { font-style: normal; color: var(--ar-green-2); }
.ar-hero-sub { color: var(--ar-ink-dim); font-size: 1.1rem; max-width: 56ch; }

.ar-hero-search { display: flex; gap: 10px; margin: 28px 0 14px; position: relative; }
.ar-hero-search .ar-hero-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ar-muted); font-size: 1.25rem; pointer-events: none; }
.ar-hero-search input {
  flex: 1; min-width: 0; min-height: 58px; padding: 0 18px 0 44px;
  border-radius: 14px; border: 1px solid var(--ar-line-strong);
  background: rgba(2, 8, 20, .6); color: var(--ar-ink); outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ar-hero-search input::placeholder { color: #6b809a; }
.ar-hero-search input:focus { border-color: var(--ar-green); box-shadow: 0 0 0 4px rgba(34, 197, 94, .14); }
.ar-hero-search .ar-btn { min-height: 58px; flex: none; }

.ar-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.ar-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.ar-hero-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--ar-line-strong); background: rgba(255, 255, 255, .04); font-size: .85rem; font-weight: 600; color: var(--ar-ink-dim); }
.ar-hero-chip span { color: var(--ar-green-2); }

/* Mock-Karte im Hero */
.ar-mock {
  border-radius: var(--ar-radius-lg); border: 1px solid var(--ar-line);
  background: linear-gradient(180deg, var(--ar-surface-2) 0%, var(--ar-bg-2) 100%);
  box-shadow: var(--ar-shadow); overflow: hidden;
}
.ar-mock-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 20px 22px; border-bottom: 1px solid var(--ar-line); }
.ar-mock-head h3 { font-size: 1.08rem; margin: 0 0 4px; }
.ar-mock-head p { margin: 0; color: var(--ar-muted); font-size: .82rem; }
.ar-mock-score { display: grid; justify-items: center; gap: 2px; }
.ar-mock-score strong { font-size: 1.7rem; color: var(--ar-amber); line-height: 1; }
.ar-mock-score span { font-size: .72rem; color: var(--ar-muted); text-transform: uppercase; letter-spacing: .05em; }
.ar-mock-body { padding: 20px 22px; display: grid; gap: 16px; }
.ar-mock-bars { display: grid; gap: 10px; }
.ar-mock-bar span { display: flex; justify-content: space-between; font-size: .8rem; color: var(--ar-muted); margin-bottom: 4px; }
.ar-mock-bar i { display: block; height: 7px; border-radius: 999px; background: rgba(148, 163, 184, .18); position: relative; overflow: hidden; }
.ar-mock-bar i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w, 50%); background: var(--c, var(--ar-green)); border-radius: 999px; }
.ar-mock-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ar-mock-tile { padding: 11px 12px; border-radius: 11px; background: rgba(2, 8, 20, .42); border: 1px solid var(--ar-line); }
.ar-mock-tile small { display: block; color: var(--ar-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; }
.ar-mock-tile b { display: block; font-size: 1rem; color: #fff; font-weight: 700; margin-top: 3px; }
.ar-mock-note { padding: 12px 14px; border-radius: 11px; background: rgba(37, 99, 235, .12); border: 1px solid rgba(59, 130, 246, .28); font-size: .84rem; color: var(--ar-ink-dim); }
.ar-mock-caption { padding: 12px 22px; border-top: 1px solid var(--ar-line); font-size: .76rem; color: var(--ar-muted); background: rgba(2, 8, 20, .3); }

/* ==========================================================================
   6. Feature-, Schritt- und Quellenkarten
   ========================================================================== */
.ar-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.ar-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }

.ar-feature {
  background: var(--ar-light-surface); border: 1px solid var(--ar-light-line);
  border-radius: var(--ar-radius); padding: 26px; box-shadow: var(--ar-shadow-light);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ar-feature:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(15, 36, 64, .12); }
.ar-feature h3 { font-size: 1.08rem; margin: 16px 0 8px; }
.ar-feature p { margin: 0; color: var(--ar-light-muted); font-size: .93rem; }
.ar-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(34, 197, 94, .12); color: #0f7a3d; }
.ar-icon svg { width: 23px; height: 23px; }
.ar-icon--blue { background: rgba(37, 99, 235, .1); color: var(--ar-blue); }

.ar-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.ar-step { position: relative; padding: 28px 24px; border-radius: var(--ar-radius); background: var(--ar-light-surface); border: 1px solid var(--ar-light-line); box-shadow: var(--ar-shadow-light); }
.ar-step-no { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(145deg, var(--ar-blue-2), var(--ar-blue)); color: #fff; font-weight: 800; margin-bottom: 16px; }
.ar-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.ar-step p { margin: 0; color: var(--ar-light-muted); font-size: .93rem; }

.ar-sourcegrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 40px; }
.ar-sourcecard { padding: 22px; border-radius: var(--ar-radius); background: var(--ar-light-surface); border: 1px solid var(--ar-light-line); box-shadow: var(--ar-shadow-light); }
.ar-sourcecard h3 { font-size: .99rem; margin: 14px 0 6px; }
.ar-sourcecard p { margin: 0 0 10px; color: var(--ar-light-muted); font-size: .87rem; }
.ar-sourcecard ul { margin: 0; padding-left: 17px; color: var(--ar-light-muted); font-size: .83rem; }
.ar-sourcecard li { margin-bottom: 3px; }
.ar-source-badge { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; background: rgba(34, 197, 94, .12); color: #0f7a3d; }
.ar-source-badge--primary { background: rgba(37, 99, 235, .1); color: var(--ar-blue); }

.ar-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.ar-checklist { display: grid; gap: 16px; margin-top: 26px; list-style: none; padding: 0; }
.ar-checklist li { display: grid; grid-template-columns: 30px 1fr; gap: 13px; align-items: start; }
.ar-check-icon { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; background: rgba(34, 197, 94, .14); color: var(--ar-green-2); font-weight: 800; font-size: .8rem; }
.ar-section--light .ar-check-icon, .ar-section--white .ar-check-icon { background: rgba(34, 197, 94, .13); color: #0f7a3d; }
.ar-checklist strong { display: block; margin-bottom: 3px; }
.ar-checklist p { margin: 0; color: var(--ar-muted); font-size: .93rem; }
.ar-section--light .ar-checklist p, .ar-section--white .ar-checklist p { color: var(--ar-light-muted); }

/* ==========================================================================
   7. Preise
   ========================================================================== */
.ar-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; align-items: start; }
.ar-plan {
  position: relative; padding: 30px 26px; border-radius: var(--ar-radius-lg);
  background: var(--ar-light-surface); border: 1px solid var(--ar-light-line);
  box-shadow: var(--ar-shadow-light);
}
.ar-plan--featured { border-color: var(--ar-green); box-shadow: 0 22px 48px rgba(34, 197, 94, .18); transform: translateY(-8px); }
.ar-plan-flag { position: absolute; top: 16px; right: 18px; padding: 4px 11px; border-radius: 999px; background: var(--ar-green); color: #04240f; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.ar-plan h3 { font-size: 1.15rem; margin-bottom: 4px; }
.ar-plan-audience { color: var(--ar-light-muted); font-size: .87rem; margin: 0 0 16px; }
.ar-plan-price { font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--ar-light-ink); }
.ar-plan-price span { font-size: .95rem; font-weight: 600; color: var(--ar-light-muted); letter-spacing: 0; }
.ar-plan-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 10px; font-size: .91rem; color: var(--ar-light-muted); }
.ar-plan-list li { display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; }
.ar-plan-list li::before { content: "✓"; color: #0f7a3d; font-weight: 800; }
.ar-plan-note { margin: 12px 0 0; font-size: .8rem; color: var(--ar-light-muted); text-align: center; }

/* ==========================================================================
   8. FAQ, Hinweis, CTA
   ========================================================================== */
.ar-faq { max-width: 900px; margin: 40px auto 0; display: grid; gap: 12px; }
.ar-faq details { background: var(--ar-light-surface); border: 1px solid var(--ar-light-line); border-radius: 14px; padding: 0 20px; }
.ar-faq summary { cursor: pointer; list-style: none; padding: 18px 34px 18px 0; font-weight: 700; position: relative; color: var(--ar-light-ink); }
.ar-faq summary::-webkit-details-marker { display: none; }
.ar-faq summary::after { content: "+"; position: absolute; right: 2px; top: 15px; font-size: 1.4rem; color: #0f7a3d; }
.ar-faq details[open] summary::after { content: "–"; }
.ar-faq p { color: var(--ar-light-muted); margin: 0 0 18px; font-size: .95rem; }

.ar-cta-band {
  display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 34px 38px; border-radius: var(--ar-radius-lg);
  background: linear-gradient(120deg, rgba(34, 197, 94, .14), rgba(37, 99, 235, .16));
  border: 1px solid rgba(34, 197, 94, .3);
}
.ar-cta-band h2 { font-size: 1.6rem; margin-bottom: 8px; color: #fff; }
.ar-cta-band p { margin: 0; color: var(--ar-ink-dim); max-width: 62ch; }

.ar-notice-box { margin-top: 34px; padding: 26px; border: 1px solid var(--ar-line); background: rgba(255, 255, 255, .04); border-radius: var(--ar-radius); }
.ar-notice-box h3 { margin-top: 0; font-size: 1.08rem; }
.ar-notice-box p { color: var(--ar-ink-dim); margin-bottom: 0; font-size: .93rem; }

/* ==========================================================================
   9. Footer
   ========================================================================== */
.ar-site-footer { background: #061223; border-top: 1px solid var(--ar-line); padding: 60px 0 26px; color: var(--ar-muted); }
.ar-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 42px; }
.ar-site-footer h4 { color: #fff; font-size: .93rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.ar-site-footer p { font-size: .9rem; }
.ar-footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .9rem; }
.ar-footer-links a { color: var(--ar-muted); text-decoration: none; }
.ar-footer-links a:hover { color: #fff; }
.ar-footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--ar-line); font-size: .84rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ar-footer-disclaimer { margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: rgba(245, 158, 11, .08); border: 1px solid rgba(245, 158, 11, .22); font-size: .83rem; color: #d8c79a; }

/* ==========================================================================
   10. Innenseiten
   ========================================================================== */
.ar-page-hero { padding: 62px 0 34px; background: linear-gradient(180deg, #0d1f36 0%, var(--ar-bg) 100%); border-bottom: 1px solid var(--ar-line); }
.ar-page-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.ar-page-hero p { color: var(--ar-muted); margin: 8px 0 0; max-width: 70ch; }
.ar-page-content { padding: 46px 0 80px; }

.ar-prose { max-width: 880px; color: var(--ar-ink-dim); }
.ar-prose h2 { margin-top: 2em; font-size: 1.45rem; }
.ar-prose h3 { margin-top: 1.6em; font-size: 1.12rem; }
.ar-prose ul, .ar-prose ol { padding-left: 1.3rem; }
.ar-prose li { margin-bottom: .4em; }
.ar-prose a { text-decoration: underline; }
.ar-prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: .93rem; }
.ar-prose th, .ar-prose td { padding: 9px 11px; border: 1px solid var(--ar-line); text-align: left; }
.ar-prose th { background: rgba(2, 8, 20, .4); color: #fff; }
.ar-prose pre { white-space: pre-wrap; padding: 15px; border-radius: 12px; background: rgba(2, 8, 20, .45); border: 1px solid var(--ar-line); font-size: .85rem; overflow-x: auto; }
.ar-prose blockquote { margin: 1.4em 0; padding: 12px 18px; border-left: 3px solid var(--ar-green); background: rgba(34, 197, 94, .06); border-radius: 0 10px 10px 0; }

.ar-postlist { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.ar-postcard { padding: 22px; border-radius: var(--ar-radius); border: 1px solid var(--ar-line); background: linear-gradient(180deg, var(--ar-surface) 0%, var(--ar-bg-2) 100%); }
.ar-postcard h2 { font-size: 1.1rem; margin-bottom: 8px; }
.ar-postcard h2 a { color: #fff; text-decoration: none; }
.ar-postcard h2 a:hover { color: var(--ar-green-2); }
.ar-postmeta { color: var(--ar-muted); font-size: .82rem; margin-bottom: 10px; }
.ar-postcard p { color: var(--ar-ink-dim); font-size: .92rem; margin: 0; }

.ar-pagination { margin-top: 34px; display: flex; gap: 8px; flex-wrap: wrap; }
.ar-pagination .page-numbers { display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0 12px; border-radius: 10px; border: 1px solid var(--ar-line-strong); color: var(--ar-ink-dim); text-decoration: none; }
.ar-pagination .page-numbers.current { background: var(--ar-green); color: #04240f; border-color: transparent; font-weight: 700; }
.ar-pagination .page-numbers:hover { background: rgba(255, 255, 255, .06); text-decoration: none; }

.ar-bond-archive-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.ar-bond-count { color: var(--ar-muted); font-size: .9rem; }

.ar-404 { text-align: center; padding: 100px 0; }
.ar-404 h1 { font-size: 4rem; margin-bottom: 8px; }

/* Kommentare bewusst schlicht */
.ar-comments { max-width: 880px; margin-top: 48px; }
.ar-comments ol { list-style: none; padding: 0; }
.ar-comments .comment-body { padding: 16px; border: 1px solid var(--ar-line); border-radius: 12px; margin-bottom: 12px; background: rgba(255, 255, 255, .03); }

/* ==========================================================================
   11. Responsive
   ========================================================================== */
@media (max-width: 1060px) {
  .ar-hero-grid, .ar-split { grid-template-columns: 1fr; gap: 40px; }
  .ar-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ar-pricing { grid-template-columns: 1fr; }
  .ar-plan--featured { transform: none; }
  .ar-footer-grid { grid-template-columns: 1fr 1fr; }
  .ar-footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .ar-menu-toggle { display: block; }
  .ar-nav {
    display: none; position: absolute; left: 16px; right: 16px; top: 70px;
    flex-direction: column; align-items: stretch; gap: 6px;
    padding: 16px; border-radius: 16px;
    background: #0d1f36; border: 1px solid var(--ar-line-strong); box-shadow: var(--ar-shadow);
  }
  .ar-nav.is-open { display: flex; }
  .ar-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .ar-nav a { padding: 9px 6px; }
  .ar-nav-actions { flex-direction: column; align-items: stretch; gap: 8px; margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--ar-line); }
}

@media (max-width: 720px) {
  .ar-wrap { width: min(calc(100% - 28px), var(--ar-wrap)); }
  .ar-section { padding: 60px 0; }
  .ar-hero { padding: 54px 0 64px; }
  .ar-grid-3, .ar-grid-4, .ar-steps { grid-template-columns: 1fr; }
  .ar-footer-grid { grid-template-columns: 1fr; }
  .ar-footer-grid > :first-child { grid-column: auto; }
  .ar-hero-search { flex-direction: column; }
  .ar-hero-search .ar-btn { width: 100%; }
  .ar-hero-search .ar-hero-search-icon { top: 29px; }
  .ar-mock-tiles { grid-template-columns: 1fr 1fr; }
  .ar-cta-band { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   12. WordPress-Standardklassen
   ========================================================================== */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--ar-muted); font-size: .84rem; text-align: center; }
.sticky, .gallery-caption, .bypostauthor { display: block; }
