/* The homepage announcement presents the two apps as a pair of small windows. */
.har-wrap { display: flex; justify-content: center; margin-bottom: 32px; }
.har {
    --har-panel: #fff;
    --har-soft: #f7f9fc;
    --har-line: #dce4ed;
    --har-text: #243247;
    --har-muted: #69798e;
    /* Matches --opg-now on the playground’s Registerdaten highlight. */
    --har-accent: #FFB328;
    --har-tint: color-mix(in srgb, var(--har-accent) 12%, var(--har-panel));
    --har-hover-line: color-mix(in srgb, var(--har-accent) 40%, var(--har-line));
    --har-shadow: 0 2px 5px #1c2d4405, 0 8px 20px #1c2d4406;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    min-height: 44px;
    padding: 4px 12px 4px 13px;
    border: 1px solid var(--har-line);
    border-radius: 9px;
    background: var(--har-panel);
    color: var(--har-text) !important;
    box-shadow: var(--har-shadow);
    text-decoration: none !important;
    transition: border-color .25s, box-shadow .25s;
    -webkit-tap-highlight-color: transparent;
}
@media (prefers-color-scheme: dark) {
    .har {
        --har-panel: #111b2e;
        --har-soft: #0f1929;
        --har-line: #2d3c53;
        --har-text: #e8eef7;
        --har-muted: #99a9bf;
        --har-shadow: 0 2px 5px #04091712, 0 8px 20px #04091718;
    }
}
.dark .har {
    --har-panel: #111b2e;
    --har-soft: #0f1929;
    --har-line: #2d3c53;
    --har-text: #e8eef7;
    --har-muted: #99a9bf;
    --har-shadow: 0 2px 5px #04091712, 0 8px 20px #04091718;
}
.har *, .har *::before, .har *::after { box-sizing: border-box; }
.har:hover, .har:focus-visible { border-color: var(--har-hover-line); }
.har:focus-visible { outline: 2px solid var(--har-accent); outline-offset: 4px; }
.har-art { position: relative; flex: 0 0 60px; height: 33px; }
.har-window { position: absolute; width: 35px; height: 32px; overflow: visible; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s cubic-bezier(.2, .8, .2, 1); filter: drop-shadow(0 2px 2px #1020300a); }
.har-window--leads { left: 0; top: 2px; transform: rotate(-7deg); }
.har-window--enrich { right: 0; top: 0; transform: rotate(6deg); }
.har:hover .har-window--leads, .har:focus-visible .har-window--leads { transform: translateX(-2px) rotate(-10deg); }
.har:hover .har-window--enrich, .har:focus-visible .har-window--enrich { transform: translateX(2px) rotate(9deg); }
.har-paper { fill: var(--har-panel); stroke: var(--har-line); stroke-width: 1.5; }
.har-rule { stroke: var(--har-line); stroke-width: .8; }
.har-dot { fill: var(--har-accent); }
.har-chrome { stroke: var(--har-muted); stroke-width: 1; opacity: .4; }
.har-input { fill: var(--har-soft); stroke: var(--har-line); stroke-width: .8; }
.har-search { stroke: var(--har-accent); stroke-width: .85; }
.har-query { stroke: var(--har-muted); stroke-width: 1; opacity: .45; transform-origin: 16px 15px; }
.har-pick { fill: var(--har-tint); stroke: var(--har-accent); stroke-width: .7; }
.har-check { stroke: var(--har-accent); stroke-width: .9; }
.har-result { stroke: var(--har-text); stroke-width: 1.2; opacity: .65; }
.har-column { fill: var(--har-tint); }
.har-source { stroke: var(--har-muted); stroke-width: 1.1; opacity: .6; }
.har-cell { stroke: var(--har-accent); stroke-width: 1.2; }
.har-copy { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.har-meta { display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.har-intro { color: var(--har-accent); font-size: 10px; font-weight: 600; letter-spacing: .015em; }
.har-date { display: flex; align-items: center; gap: 8px; color: var(--har-muted); font-size: 10px; white-space: nowrap; }
.har-date::before { content: ''; width: 2px; height: 2px; border-radius: 50%; background: var(--har-muted); opacity: .6; }
.har-names { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0 5px; color: var(--har-text); font-size: 12px; font-weight: 600; line-height: 1.4; }
.har-names > span { white-space: nowrap; }
.har-amp { color: var(--har-muted); font-weight: 400; }
.har-arrow { display: grid; place-items: center; flex: 0 0 27px; height: 27px; margin-left: 5px; border: 1px solid var(--har-line); border-radius: 50%; background: var(--har-soft); color: var(--har-muted); transition: background .25s, color .25s, border-color .25s; }
.har-arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.3; transition: transform .25s; }
.har:hover .har-arrow, .har:focus-visible .har-arrow { color: var(--har-accent); border-color: var(--har-hover-line); background: var(--har-tint); }
.har:hover .har-arrow svg, .har:focus-visible .har-arrow svg { transform: translateX(1px); }
@media (prefers-reduced-motion: no-preference) {
    /* A single short sequence: query, selected leads, then appended cells.
       Both windows remain complete after the animation finishes. */
    .har-query { animation: har-query 2.8s ease-out both; }
    .har-lead-row--first { animation: har-row 2.8s ease-out both; }
    .har-lead-row--last { animation: har-row-last 2.8s ease-out both; }
    .har-cell--first { animation: har-cell-first 2.8s ease-out both; }
    .har-cell--second { animation: har-cell-second 2.8s ease-out both; }
    .har-cell--last { animation: har-cell-last 2.8s ease-out both; }
}
@keyframes har-query { 0%, 8% { transform: scaleX(.1); opacity: .2; } 30%, 100% { transform: scaleX(1); opacity: .45; } }
@keyframes har-row { 0%, 22% { opacity: 0; transform: translateY(2px); } 42%, 100% { opacity: 1; transform: translateY(0); } }
@keyframes har-row-last { 0%, 32% { opacity: 0; transform: translateY(2px); } 52%, 100% { opacity: 1; transform: translateY(0); } }
@keyframes har-cell-first { 0%, 36% { opacity: 0; } 54%, 100% { opacity: 1; } }
@keyframes har-cell-second { 0%, 48% { opacity: 0; } 66%, 100% { opacity: 1; } }
@keyframes har-cell-last { 0%, 60% { opacity: 0; stroke-dasharray: 6; stroke-dashoffset: 6; } 80%, 100% { opacity: 1; stroke-dasharray: 6; stroke-dashoffset: 0; } }
@media (max-width: 480px) {
    .har { gap: 10px; padding: 4px 10px; }
    .har-art { flex-basis: 52px; height: 31px; }
    .har-window { width: 32px; height: 29px; }
    .har-names { font-size: 11px; gap: 0 4px; }
    .har-arrow { flex-basis: 24px; height: 24px; margin-left: 0; }
    .har-intro, .har-date { font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
    .har, .har * { animation: none !important; transition: none !important; }
    .har:hover .har-window--leads, .har:focus-visible .har-window--leads { transform: rotate(-7deg); }
    .har:hover .har-window--enrich, .har:focus-visible .har-window--enrich { transform: rotate(6deg); }
    .har:hover .har-arrow svg, .har:focus-visible .har-arrow svg { transform: none; }
}
