    :root {
      --bg: #060807;
      --bg-soft: #0b110d;
      --surface: rgba(255, 255, 255, 0.05);
      --surface-strong: rgba(255, 255, 255, 0.08);
      --stroke: rgba(255, 255, 255, 0.1);
      --text: #f4f7f2;
      --muted: #9dac9f;
      --green: #87d36c;
      --green-2: #4fa04a;
      --green-3: #244d27;
      --earth: #8f7756;
      --danger: #ff7b6b;
      --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 0%, rgba(135, 211, 108, 0.16), transparent 28%),
        radial-gradient(circle at 100% 10%, rgba(79, 160, 74, 0.14), transparent 30%),
        linear-gradient(180deg, #081009 0%, #050706 55%, #040504 100%);
      line-height: 1.55;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.38), transparent 90%);
      opacity: 0.18;
      z-index: 0;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; }
    .wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(135, 211, 108, 0.09);
      border: 1px solid rgba(135, 211, 108, 0.22);
      color: #d5f1cf;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, #b4ff90, #52b74d);
      box-shadow: 0 0 16px rgba(135, 211, 108, 0.7);
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(6, 8, 7, 0.75);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .nav-inner {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      min-height: 76px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 40%),
        linear-gradient(135deg, #6fd35f, #1c421f);
      display: grid;
      place-items: center;
      box-shadow: 0 12px 28px rgba(84, 164, 77, 0.25);
      font-size: 1.15rem;
    }

    .brand img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .brand span strong { color: var(--green); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: 0.95rem;
      padding: 10px 14px;
      border-radius: 999px;
      transition: 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--text);
      background: rgba(255,255,255,0.06);
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 12px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,0.03);
      color: var(--text);
      font-size: 1.3rem;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .nav-toggle:hover {
      border-color: rgba(135, 211, 108, 0.4);
      background: rgba(135, 211, 108, 0.08);
    }

    .hero {
      padding: 72px 0 28px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 34px;
      align-items: center;
    }

    h1 {
      margin: 18px 0 18px;
      font-size: clamp(3rem, 7vw, 6.25rem);
      line-height: 0.95;
      letter-spacing: -0.06em;
      max-width: 11ch;
    }

    .headline-accent {
      display: block;
      background: linear-gradient(135deg, #ffffff 0%, #b8f89d 48%, #5fb85a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 28px rgba(135, 211, 108, 0.1);
    }

    .hero-copy {
      font-size: 1.12rem;
      color: var(--muted);
      max-width: 62ch;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 22px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 800;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #87d36c, #3e8f42);
      color: #081009;
      box-shadow: 0 18px 42px rgba(83, 160, 72, 0.26);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.03);
      border-color: rgba(255,255,255,0.1);
      color: var(--text);
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-secondary:hover { border-color: rgba(135, 211, 108, 0.4); background: rgba(255,255,255,0.06); }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 8px;
    }

    .mini-card {
      padding: 16px 16px 15px;
      border: 1px solid var(--stroke);
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .mini-card strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 4px;
      color: #ecffee;
    }

    .mini-card span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .hero-visual {
      position: relative;
      min-height: 630px;
    }

    .glow {
      position: absolute;
      inset: auto auto 10% -5%;
      width: 320px;
      height: 320px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(135, 211, 108, 0.28), transparent 70%);
      filter: blur(20px);
      opacity: 0.9;
    }

    .visual-stack {
      position: relative;
      height: 100%;
      display: grid;
      place-items: center;
    }

    .panel {
      position: absolute;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
    }

    .panel-main {
      inset: 34px 0 auto 42px;
      width: min(100%, 500px);
      transform: rotate(-4deg);
    }

    .panel-side {
      right: 0;
      bottom: 48px;
      width: 260px;
      transform: rotate(7deg);
    }

    .panel img { width: 100%; height: 100%; object-fit: cover; }

    .float-badge {
      position: absolute;
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(7, 11, 8, 0.84);
      box-shadow: var(--shadow);
      max-width: 220px;
    }

    .float-badge strong {
      display: block;
      margin-bottom: 4px;
      font-size: 0.98rem;
      color: #f6fff5;
    }

    .float-badge span {
      color: var(--muted);
      font-size: 0.9rem;
      display: block;
    }

    .badge-1 { top: 10px; right: 22px; }
    .badge-2 { left: 0; bottom: 10px; }

    .section {
      padding: 42px 0;
      position: relative;
      z-index: 1;
    }

    .trust-strip {
      padding-top: 10px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .trust-item {
      padding: 22px;
      border-radius: 20px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,0.035);
    }

    .trust-item strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 6px;
    }

    .trust-item span { color: var(--muted); font-size: 0.95rem; }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1;
      letter-spacing: -0.05em;
      margin: 14px 0 14px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.04rem;
      margin: 0;
    }

    .feature-grid,
    .proof-grid,
    .steps,
    .gallery-grid,
    .footer-grid,
    .compare-grid {
      display: grid;
      gap: 18px;
    }

    .feature-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid var(--stroke);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      padding: 26px;
      min-height: 100%;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: -30% auto auto -10%;
      width: 160px;
      height: 160px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(135,211,108,0.16), transparent 72%);
      pointer-events: none;
    }

    .icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(135,211,108,0.18), rgba(79,160,74,0.12));
      border: 1px solid rgba(135,211,108,0.2);
      font-size: 1.35rem;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.3rem;
      letter-spacing: -0.03em;
    }

    .card p,
    .card li,
    .step p,
    .proof-item p,
    .compare-box p,
    footer p,
    footer a {
      color: var(--muted);
    }

    .card ul {
      padding-left: 18px;
      margin: 14px 0 0;
    }

    .showcase {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 18px;
      align-items: stretch;
    }

    .showcase-visual,
    .showcase-copy,
    .cta-box,
    .compare-box {
      border-radius: 28px;
      border: 1px solid var(--stroke);
      background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .showcase-visual {
      min-height: 560px;
      position: relative;
      padding: 20px;
      display: grid;
      align-items: end;
      background:
        linear-gradient(180deg, rgba(6, 8, 7, 0.2), rgba(6, 8, 7, 0.88)),
        url('Werbung1.png') center/cover no-repeat;
    }

    .showcase-overlay {
      padding: 22px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(6, 8, 7, 0.68);
      backdrop-filter: blur(12px);
      max-width: 420px;
    }

    .showcase-overlay strong {
      display: block;
      font-size: 1.4rem;
      margin-bottom: 8px;
    }

    .showcase-copy {
      padding: 30px;
    }

    .bullet-list {
      display: grid;
      gap: 16px;
      margin-top: 26px;
    }

    .bullet {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      border-radius: 20px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .bullet .dot {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(135,211,108,0.18), rgba(79,160,74,0.1));
      font-size: 1.2rem;
    }

    .bullet strong { display: block; margin-bottom: 4px; font-size: 1rem; color: #f5fff2; }

    .steps {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      counter-reset: step;
    }

    .step {
      position: relative;
      padding: 26px;
      border-radius: 24px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,0.04);
    }

    .step::before {
      counter-increment: step;
      content: counter(step, decimal-leading-zero);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      margin-bottom: 18px;
      background: linear-gradient(135deg, #8ce26d, #3d8a41);
      color: #071009;
      font-weight: 900;
      letter-spacing: 0.04em;
      box-shadow: 0 14px 28px rgba(83, 160, 72, 0.24);
    }

    .step h3 { margin: 0 0 10px; font-size: 1.2rem; }

    .proof-grid {
      grid-template-columns: 1.15fr 0.85fr;
      align-items: stretch;
    }

    .proof-item {
      border-radius: 28px;
      border: 1px solid var(--stroke);
      background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
      padding: 30px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .stat {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
    }

    .stat strong {
      display: block;
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -0.05em;
      color: #eeffe8;
    }

    .compare-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 20px;
    }

    .compare-box { padding: 24px; }

    .compare-box h3 { margin-top: 0; }
    .compare-box ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }

    .gallery-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .shot {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.08);
      background: #09100b;
      aspect-ratio: 10 / 19;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .shot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .shot::after {
      content: attr(data-label);
      position: absolute;
      inset: auto 14px 14px 14px;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(5,7,6,0.72);
      color: #eef7eb;
      font-size: 0.88rem;
      border: 1px solid rgba(255,255,255,0.06);
      backdrop-filter: blur(10px);
      z-index: 1;
    }

    .shot:hover img { transform: scale(1.06); }

    .cta-box {
      padding: 34px;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: -5% auto auto 55%;
      width: 320px;
      height: 320px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(135,211,108,0.18), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }

    .cta-box h2 {
      font-size: clamp(2rem, 5vw, 3.6rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
      margin: 14px 0;
      max-width: 40ch;
    }

    footer {
      padding: 22px 0 56px;
    }

    .footer-grid {
      grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
    }

    footer h4 {
      margin-bottom: 10px;
      font-size: 1rem;
    }

    footer a { text-decoration: none; }
    footer a:hover { color: var(--text); }
    .small { font-size: 0.88rem; color: #748174; }

    /* Reveal-Animation NUR wenn JS aktiv ist – ohne JS bleibt alles sichtbar
       (Barrierefreiheit / Robustheit: Inhalt darf nicht an JavaScript hängen). */
    .js .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .js .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Nutzer mit reduzierten Bewegungen: keine Einblende-Animation, sofort sichtbar. */
    @media (prefers-reduced-motion: reduce) {
      .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
      * {
        scroll-behavior: auto !important;
      }
    }

    /* Sichtbarer Tastatur-Fokus (Barrierefreiheit). */
    a:focus-visible,
    button:focus-visible {
      outline: 3px solid #ff5a4d;
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* Sprunglink „Zum Inhalt" – nur bei Tastatur-Fokus sichtbar. */
    .skip-link {
      position: absolute;
      left: 12px;
      top: -60px;
      z-index: 1000;
      background: #ff5a4d;
      color: #0a0a0a;
      font-weight: 700;
      padding: 10px 16px;
      border-radius: 8px;
      text-decoration: none;
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 12px;
    }

    @media (max-width: 1120px) {
      .hero-grid,
      .showcase,
      .proof-grid,
      .feature-grid,
      .steps,
      .gallery-grid,
      .trust-grid,
      .footer-grid,
      .stats,
      .watch-grid,
      .compare-grid { grid-template-columns: 1fr 1fr; }

      .hero-grid,
      .showcase,
      .proof-grid { grid-template-columns: 1fr; }

      .hero-visual { min-height: 540px; }
      .panel-main { left: 18px; }
    }

    @media (max-width: 760px) {
      .nav-toggle { display: flex; }
      .nav-inner { padding: 14px 0; flex-wrap: wrap; }
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid var(--stroke);
      }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 12px 16px; border-radius: 12px; }
      .hero { padding-top: 36px; }
      .hero-points,
      .feature-grid,
      .steps,
      .gallery-grid,
      .trust-grid,
      .footer-grid,
      .compare-grid,
      .watch-grid,
      .stats { grid-template-columns: 1fr; }
      h1 { max-width: none; }
      .hero-visual { min-height: 470px; }
      .panel-main { inset: 26px 8px auto 8px; width: auto; transform: rotate(-2deg); }
      .panel-side { width: 210px; right: 6px; bottom: 36px; }
      .badge-1 { top: 0; right: 0; }
      .badge-2 { left: 0; bottom: 0; }
      .showcase-copy, .proof-item, .cta-box { padding: 24px; }
      .shot { aspect-ratio: 4 / 5; }
    }

    /* ── Step accent colors (4-Phasen-Ablauf) ──────────────────────────────── */
    .step.accent-legen::before { background: linear-gradient(135deg, #8ce26d, #3d8a41); color: #071009; }
    .step.accent-warten::before { background: linear-gradient(135deg, #6fd6f4, #1f7fa8); color: #04131c; }
    .step.accent-suchen::before { background: linear-gradient(135deg, #ffc36a, #e08a1e); color: #1a0900; }
    .step.accent-auswertung::before { background: linear-gradient(135deg, #d9a6ff, #8a4fd1); color: #1a0926; }

    /* ── Table of contents (Pill-Anchors, z. B. Anleitung) ─────────────────── */
    .toc {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .toc a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,0.035);
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .toc a:hover {
      color: var(--text);
      border-color: rgba(135,211,108,0.4);
      background: rgba(135,211,108,0.08);
    }

    /* ── Profi-Tipp-Box ─────────────────────────────────────────────────────── */
    .tip-box {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(135, 211, 108, 0.07);
      border: 1px solid rgba(135, 211, 108, 0.22);
      margin: 22px 0;
    }

    .tip-box .dot {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(135,211,108,0.22), rgba(79,160,74,0.14));
      font-size: 1.2rem;
    }

    .tip-box strong { display: block; margin-bottom: 4px; color: #eaffe6; }
    .tip-box p { margin: 0; color: var(--muted); font-size: 0.95rem; }

    /* ── FAQ-Akkordeon ──────────────────────────────────────────────────────── */
    .faq details {
      padding: 18px 22px;
      border-radius: 18px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,0.035);
      margin-bottom: 12px;
    }

    .faq summary {
      cursor: pointer;
      font-weight: 800;
      font-size: 1.02rem;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: #f5fff2;
    }

    .faq summary::-webkit-details-marker { display: none; }

    .faq summary::after {
      content: "+";
      font-size: 1.4rem;
      color: var(--green);
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .faq details[open] summary::after { content: "\2013"; }
    .faq details p { margin: 14px 0 0; color: var(--muted); }

    /* ── Karten-Link ("Mehr erfahren") ──────────────────────────────────────── */
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--green);
      text-decoration: none;
      position: relative;
      z-index: 1;
    }

    .card-link:hover { color: #b8f89d; }

    /* ── Smartwatch-Frames (Wear OS / Apple Watch Screens) ─────────────────── */
    .watch-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 30px;
      margin-top: 26px;
    }

    .watch-item { text-align: center; }

    .watch-frame {
      position: relative;
      width: 100%;
      max-width: 240px;
      aspect-ratio: 1 / 1;
      margin: 0 auto;
      border-radius: 50%;
      overflow: hidden;
      border: 10px solid #14201a;
      box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.06);
      background: #000;
    }

    .watch-frame::after {
      content: "";
      position: absolute;
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 44px;
      background: #14201a;
      border-radius: 6px;
      box-shadow: var(--shadow);
    }

    .watch-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .watch-item .watch-caption {
      margin-top: 16px;
    }

    .watch-item .watch-caption strong {
      display: block;
      color: #f5fff2;
      margin-bottom: 4px;
    }

    .watch-item .watch-caption span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    /* ── Plattform-Badges (Apple Watch / Wear OS) ──────────────────────────── */
    .platform-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(135, 211, 108, 0.09);
      border: 1px solid rgba(135, 211, 108, 0.22);
      color: #d5f1cf;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 14px;
    }
