/* Agentic Chat - Landing. Reines CSS, keine externen Requests, keine Frameworks.
   Editorial / reduktiv, orientiert an Imitation AI (Layout, Hierarchie) und claude.ai (Reduktion, Raum).
   Farben = Pantone-Theme der App. Goldener Schnitt: Hero auf der oberen 38,2-Linie, FAQ/Legal als
   38,2 / 61,8-Raster, Typo- und Abstandsskala in phi-Stufen. */

:root {
  color-scheme: light dark;
  --phi: 1.618;

  --fs-xs: 0.8rem;
  --fs-sm: 0.92rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.3rem;
  --fs-lg: 1.7rem;
  --fs-xl: clamp(2rem, 4.5vw, 3rem);
  --fs-display: clamp(2.8rem, 9vw, 6rem);

  --s-1: 0.382rem;
  --s-2: 0.618rem;
  --s-3: 1rem;
  --s-4: 1.618rem;
  --s-5: 2.618rem;
  --s-6: 4.236rem;
  --s-7: 6.854rem;
  --s-8: 11.09rem;

  --maxw: 72rem;
  --maxw-text: 44rem;
  --nav-h: 4.25rem;
  --radius: 16px;
  --radius-btn: 10px;
  --radius-pill: 999px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --bg: #f0eee9;
  --panel: #f7f6f2;
  --surface: #f4f2ed;
  --surface-alt: #e8e6e1;
  --text: #1b1e23;
  --muted: #5f6672;
  --faint: #99a0ab;
  --border: #e2e0da;
  --border-strong: #d4d2cb;
  --accent: #2a5c6a;
  --accent-hover: #1e4a56;
  --on-accent: #f0eee9;
  --citron: #b07d18;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #111214; --panel: #191a1d; --surface: #1c1d20; --surface-alt: #26272b;
    --text: #f0eee9; --muted: #9a9ba2; --faint: #5e5f64;
    --border: #232427; --border-strong: #34353a;
    --accent: #3a8a9e; --accent-hover: #4da0b5; --on-accent: #f0eee9; --citron: #e3cc81;
  }
}
:root[data-theme="dark"] {
  --bg: #111214; --panel: #191a1d; --surface: #1c1d20; --surface-alt: #26272b;
  --text: #f0eee9; --muted: #9a9ba2; --faint: #5e5f64;
  --border: #232427; --border-strong: #34353a;
  --accent: #3a8a9e; --accent-hover: #4da0b5; --on-accent: #f0eee9; --citron: #e3cc81;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); font-size: var(--fs-base); line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-h);
}
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--s-4); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
/* Header-Inhalt auf derselben Achse wie der Content-Wrap (Logo buendig mit Hero-Textkante). */
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); }
.brand { font-weight: 700; font-size: var(--fs-md); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: var(--s-4); }
.nav-links a { color: var(--muted); font-size: var(--fs-sm); font-weight: 600; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: var(--s-2); }
.nav-toggle { display: none; align-items: center; justify-content: center; background: transparent; border: none; color: var(--text); cursor: pointer; padding: 0.4rem; margin: -0.4rem; }
.nav-toggle svg { width: 26px; height: 26px; display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: inherit; font-size: var(--fs-sm); font-weight: 600; line-height: 1;
  padding: 0.75rem 1.2rem; border-radius: var(--radius-btn); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.btn.ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn.ghost:hover { background: var(--surface-alt); }
.btn.filled { background: var(--accent); color: var(--on-accent); }
.btn.filled:hover { background: var(--accent-hover); }
.btn.lg { font-size: var(--fs-base); padding: 0.95rem 1.7rem; }

.theme { display: inline-flex; align-items: center; gap: 2px; padding: 2px; border: 1px solid var(--border); border-radius: var(--radius-pill); background: var(--surface-alt); }
.theme button { display: inline-flex; align-items: center; justify-content: center; color: var(--muted); background: transparent; border: none; cursor: pointer; padding: 0.36rem 0.46rem; border-radius: var(--radius-pill); transition: background-color 0.15s ease, color 0.15s ease; }
.theme button:hover { color: var(--text); }
.theme button[aria-pressed="true"] { background: var(--panel); color: var(--accent); }
.theme button svg { width: 16px; height: 16px; display: block; }

/* ---------- Mobile-Menue (Top-Drawer, folgt dem Theme: hell im Light-, dunkel im Dark-Mode) ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg); color: var(--text);
  display: flex; flex-direction: column; padding-block: var(--s-3) var(--s-6);
  transform: translateY(-100%); transition: transform 0.28s ease, visibility 0s linear 0.28s; visibility: hidden; overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; transition: transform 0.28s ease, visibility 0s; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.mobile-menu-top .brand { color: var(--text); }
.menu-close { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--text); cursor: pointer; padding: 0.4rem; margin: -0.4rem; }
.menu-close svg { width: 26px; height: 26px; display: block; }
.mobile-menu-links { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-6); }
.mobile-menu-links a { color: var(--text); font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.03em; }
.mobile-menu-links a:hover { color: var(--accent); }
.mobile-menu-cta { margin-top: auto; padding-top: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); }
.mobile-menu-cta .btn { width: 100%; }

/* Section-Rhythmus + Anker-Offset unter dem fixierten Header (sonst klebt die Headline am Header). */
section { padding-block: var(--s-7); scroll-margin-top: calc(var(--nav-h) + var(--s-4)); }

/* ---------- Hero (links, obere goldene Linie, viel Raum) ---------- */
.hero { min-height: calc(94vh - var(--nav-h)); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding-top: 18vh; padding-bottom: var(--s-7); }
.hero h1 { font-size: var(--fs-display); font-weight: 700; line-height: 1.0; letter-spacing: -0.045em; max-width: 14ch; }
.hero p { font-size: var(--fs-md); color: var(--muted); margin-top: var(--s-4); max-width: 40ch; }
.hero .cta { margin-top: var(--s-5); display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ---------- Editorial Story-Sektionen (keine Boxen) ---------- */
.story-wrap { display: grid; gap: var(--s-7); }
.story { max-width: 48rem; }
.story h2 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; }
.story p { font-size: var(--fs-md); color: var(--muted); margin-top: var(--s-4); max-width: 44ch; line-height: 1.45; }

/* Modelle als Infrastruktur (ruhiger Block, weiter unten) */
.infra { border-top: 1px solid var(--border); }
.infra .eyebrow { font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.infra h2 { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.02em; margin-top: var(--s-3); max-width: 24ch; }
.infra p { color: var(--muted); margin-top: var(--s-3); max-width: 50ch; }
.infra .models { margin-top: var(--s-4); color: var(--text); font-weight: 600; }

/* CTA-Band: eigenstaendiger Editorial-Block mit viel Luft, klebt nicht an Pricing. */
.cta-band { padding-block: var(--s-8); }
.cta-band .inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4); padding: var(--s-6); border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.cta-band h2 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.03em; max-width: 18ch; }

/* ---------- Pricing (ruhig) ---------- */
.pricing .head { text-align: center; max-width: var(--maxw-text); margin: 0 auto var(--s-6); }
.pricing .eyebrow { font-size: var(--fs-sm); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.pricing h2 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.03em; margin-top: var(--s-2); }
.pricing .head p { color: var(--muted); margin-top: var(--s-3); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-5); }
.price-card.featured { border-color: var(--accent); }
.price-card .tier { font-size: var(--fs-lg); font-weight: 700; display: flex; align-items: baseline; gap: var(--s-2); }
.price-card .tag { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--citron); }
.price-card .credits { margin-top: var(--s-4); font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--text); }
.price-card .credits span { display: block; margin-top: var(--s-2); font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0; color: var(--accent); }
.price-card .price { margin-top: var(--s-3); color: var(--muted); font-size: var(--fs-md); font-weight: 600; }
.price-card .btn { margin-top: auto; width: 100%; }
/* Leistungen genau einmal nennen (nicht je Karte wiederholen). */
.includes { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-2) var(--s-4); max-width: var(--maxw-text); margin: var(--s-5) auto 0; }
.includes li { position: relative; padding-left: 1.4rem; color: var(--muted); font-size: var(--fs-sm); }
.includes li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing .foot { text-align: center; color: var(--faint); font-size: var(--fs-sm); margin-top: var(--s-4); }

/* ---------- FAQ (Claude-Stil: wenige, gross, viel Raum) ---------- */
.faq .head { text-align: center; margin-bottom: var(--s-6); }
.faq h2 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.03em; }
.faq-list { max-width: var(--maxw-text); margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: var(--s-5) 0; font-size: var(--fs-lg); font-weight: 600; letter-spacing: -0.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--muted); font-size: var(--fs-lg); line-height: 1; font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .answer { padding-bottom: var(--s-5); margin-top: calc(var(--s-3) * -1); color: var(--muted); font-size: var(--fs-md); max-width: 58ch; }

/* ---------- Footer (kompakt, echte Links) ---------- */
.footer { border-top: 1px solid var(--border); padding-block: var(--s-6); }
.footer-top { display: flex; flex-wrap: wrap; gap: var(--s-6); justify-content: space-between; }
.footer-brand .name { font-weight: 700; font-size: var(--fs-md); }
.footer-brand p { color: var(--muted); font-size: var(--fs-sm); margin-top: var(--s-2); max-width: 22rem; }
.footer-cols { display: flex; gap: var(--s-6); flex-wrap: wrap; }
.footer-col h4 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: var(--s-3); }
.footer-col a { display: block; color: var(--muted); font-size: var(--fs-sm); padding: 3px 0; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); color: var(--faint); font-size: var(--fs-sm); }

/* ---------- Legal ---------- */
.legal-layout { display: grid; grid-template-columns: minmax(0, 0.30fr) minmax(0, 0.70fr); gap: var(--s-6); padding-block: var(--s-6); }
.legal-nav { position: sticky; top: calc(var(--nav-h) + var(--s-4)); align-self: start; display: grid; gap: var(--s-1); }
.legal-nav a { color: var(--muted); font-size: var(--fs-sm); font-weight: 600; padding: 4px 0; }
.legal-nav a:hover { color: var(--text); }
/* Privacy-Seite: Content-Block auf die X-Achse des Menuepunkts "Funktionen" einruecken.
   --legal-x wird per Vanilla-JS (nur privacy.html) gemessen. Eigene Klasse, kein globaler Wert.
   Mobile = volle Breite (Reset in der Media Query unten). */
.legal-article { padding-left: var(--legal-x, 0px); }
.legal h1 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.03em; }
.legal .stand { color: var(--faint); font-size: var(--fs-sm); margin-top: var(--s-2); margin-bottom: var(--s-5); }
/* Sichtbarer Block-Trenner je Hauptabschnitt: Hairline + Luft darueber/darunter. */
.legal h2 { font-size: var(--fs-lg); margin-top: var(--s-5); margin-bottom: var(--s-3); padding-top: var(--s-4); border-top: 1px solid var(--border); scroll-margin-top: calc(var(--nav-h) + var(--s-3)); }
.legal h3 { font-size: var(--fs-md); margin-top: var(--s-4); margin-bottom: var(--s-1); }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal ul { margin-top: var(--s-3); padding-left: 1.3rem; }
.legal li { margin-top: var(--s-2); }
.legal .controller { color: var(--text); }
/* Adress-/Kontaktkarte: klare Zeilenumbrueche, abgesetzter Block. */
.legal .contact-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-3) var(--s-4); margin-top: var(--s-3); line-height: 1.8; }
/* Hinweisblock: hebt KI-/Drittland-Hinweise aus dem Fliesstext heraus. */
.legal .legal-notice { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: var(--s-3) var(--s-4); margin-top: var(--s-4); line-height: 1.7; }
.legal .legal-notice strong { color: var(--text); }
.sub-table { width: 100%; border-collapse: collapse; margin-top: var(--s-3); font-size: var(--fs-sm); }
.sub-table th, .sub-table td { text-align: left; padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.sub-table th { color: var(--text); font-weight: 700; }
.muted { color: var(--muted); }

/* ---------- Mobile ---------- */
/* Ab hier "Mobile-Header": volle Desktop-Nav weg, Hamburger sichtbar. */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-direction: row; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-3); }
  .legal-article { padding-left: 0; }
  /* Mobile: vertikalen Rhythmus verdichten (Desktop-phi-Stufen sind hier zu gross). */
  section { padding-block: var(--s-5); }
  .story-wrap { gap: var(--s-5); }
  .cta-band { padding-block: var(--s-5); }
  .cta-band .inner { padding: var(--s-5); }
  .hero { min-height: auto; padding-top: var(--s-6); padding-bottom: var(--s-6); }
}
@media (max-width: 640px) {
  :root { --nav-h: 3.5rem; }
  .nav-inner { gap: var(--s-2); }
  .brand { font-size: var(--fs-base); }
  .theme button { padding: 0.32rem 0.4rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .theme button, .mobile-menu { transition: none; } }

/* ---------- App-Subseite (app.html): Plattformen nebeneinander + Screenshot-Platzhalter ---------- */
/* Nutzt nur bestehende Theme-Tokens (Farben/Abstaende/Radius), folgt also dem aktiven Theme wie der Rest. */
.app-hero { max-width: var(--maxw-text); }
.app-hero h1 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.app-hero p { font-size: var(--fs-md); color: var(--muted); margin-top: var(--s-4); }

.platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); align-items: stretch; margin-top: var(--s-6); }
/* gap haelt den Rhythmus zwischen Titel/Text/Schritten gleich UND garantiert Abstand zum Button. */
.platform { display: flex; flex-direction: column; gap: var(--s-3); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-5); }
.platform h2 { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.02em; }
.platform > p { color: var(--muted); line-height: 1.5; }
/* Anleitungs-Karten (PWA/Desktop) haben unterschiedlich lange Intro-Texte (1 Zeile Unterschied),
   dadurch verspringt die Schritt-Zeile. Intro dort auf 3 Zeilen reservieren, damit Safari- und
   Chrome-Schritte auf derselben Linie starten. Nur im 4-spaltigen Layout (>=881px) noetig, wo beide
   Karten nebeneinander stehen; darunter stacken sie (keine Reserve, kein Leerraum auf Mobile). */
@media (min-width: 881px) {
  .platform:has(.steps) > p:first-of-type { min-height: 4.5em; }
}
.platform .steps { color: var(--text); font-weight: 600; font-size: var(--fs-sm); }
.platform .note { color: var(--faint); font-size: var(--fs-sm); }
/* margin-top:auto haelt den Button unten buendig; der gap oben sorgt fuer Abstand, auch in der
   hoechsten Karte und einspaltig auf Mobile (sonst klebt "Web App oeffnen" am Text). */
.platform .btn { margin-top: auto; width: 100%; }
/* Native-App-Karte: deaktivierter "Bald"-Button, buendig mit den anderen CTAs, nicht klickbar. */
.platform .btn:disabled { opacity: 0.55; cursor: default; }
.platform .btn.ghost:disabled:hover { background: transparent; }

/* Screenshots in 16:10-Rahmen (Theme-Surface, gerundet); Bild via object-fit:cover (Maße matchen 16:10). */
.shots-section { border-top: 1px solid var(--border); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.shot .frame { aspect-ratio: 16 / 10; border-radius: var(--radius); background: var(--surface-alt); border: 1px solid var(--border); overflow: hidden; }
.shot .frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.shot figcaption { margin-top: var(--s-3); color: var(--muted); font-size: var(--fs-sm); text-align: center; }
/* Animation unter den Screenshots: zentriert + dezent (muted-Variante, nicht dominant). */
.shots-anim { display: flex; justify-content: center; margin-top: var(--s-6); }

@media (max-width: 880px) {
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .shots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .platforms { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
}

/* ---------- Agent-Icon-Animation (Hero-Akzent): Akzent-Kachel morpht durch die 10 Agent-Builder- */
/* Symbole (Crossfade). EINE Stelle fuer beide Heroes; Tempo via --cycler-dur, Groesse via --cycler-size. */
/* Aus = Markup entfernen oder hier .agent-cycler { display:none }. Folgt dem Theme (var-Tokens). */
.agent-cycler {
  --cycler-dur: 5s;
  --cycler-size: 72px;
  position: relative;
  width: var(--cycler-size);
  height: var(--cycler-size);
  margin-bottom: var(--s-4);
  border-radius: var(--radius);
  background: var(--accent);
  overflow: hidden;
}
.agent-cycler .g {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--on-accent);
  font-size: calc(var(--cycler-size) * 0.5);
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  animation: agent-cycle var(--cycler-dur) infinite;
}
.agent-cycler .g:nth-child(1) { animation-delay: calc(var(--cycler-dur) * 0.0); }
.agent-cycler .g:nth-child(2) { animation-delay: calc(var(--cycler-dur) * 0.1); }
.agent-cycler .g:nth-child(3) { animation-delay: calc(var(--cycler-dur) * 0.2); }
.agent-cycler .g:nth-child(4) { animation-delay: calc(var(--cycler-dur) * 0.3); }
.agent-cycler .g:nth-child(5) { animation-delay: calc(var(--cycler-dur) * 0.4); }
.agent-cycler .g:nth-child(6) { animation-delay: calc(var(--cycler-dur) * 0.5); }
.agent-cycler .g:nth-child(7) { animation-delay: calc(var(--cycler-dur) * 0.6); }
.agent-cycler .g:nth-child(8) { animation-delay: calc(var(--cycler-dur) * 0.7); }
.agent-cycler .g:nth-child(9) { animation-delay: calc(var(--cycler-dur) * 0.8); }
.agent-cycler .g:nth-child(10) { animation-delay: calc(var(--cycler-dur) * 0.9); }
@keyframes agent-cycle {
  0% { opacity: 0; transform: scale(0.82); }
  3% { opacity: 1; transform: scale(1); }
  10% { opacity: 1; transform: scale(1); }
  13% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .agent-cycler .g { animation: none; }
  .agent-cycler .g:nth-child(1) { opacity: 1; }
}
/* Neutrale Variante, vorbereitet fuer den Landing-Hero (aktuell NICHT eingebunden; per
   <div class="agent-cycler muted"> reaktivierbar). Graue Kachel statt Akzent-Blau (dort zu dominant).
   Subpage nutzt die Akzent-Variante (Default). Theme-aware: im Dark grau + helle Icons. */
.agent-cycler.muted { background: var(--surface-alt); border: 1px solid var(--border); }
.agent-cycler.muted .g { color: var(--text); }
