/* =====================================================================
   Rechify · Apple-Design-System (iOS / macOS System-UI)
   Tokens + Komponenten gemäß CLAUDE.md. Geteiltes Stylesheet.
   Referenz-Implementierung: finanzen/gehalt/brutto-netto-rechner/index.html
   ===================================================================== */
:root {
  --ink:        #1d1d1f;
  --ink-2:      #545458;
  --ink-3:      #8a8a8e;
  --line:       #d1d1d6;
  --sep:        #e5e5ea;
  --bg:         #f2f2f7;
  --card:       #ffffff;
  --blue:       #007aff;
  --blue-2:     #0a84ff;
  --green:      #34c759;
  --green-d:    #248a3d;
  --red:        #ff3b30;
  --fill:       rgba(120,120,128,.12);
  --wrap:       1080px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --r-card:     16px;
  --r-ctrl:     10px;
  --ease:       cubic-bezier(.32,.72,0,1);
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
svg { display: block; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.022em; line-height: 1.12; }

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

/* ------------------------------------------------------ TOOLBAR ----- */
.toolbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,242,247,.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: .5px solid rgba(0,0,0,.14);
}
.toolbar-in { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; height: 52px; display: flex; align-items: center; gap: 6px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 600; color: var(--ink); margin-right: auto; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(165deg, #5a7e9f, #41648a); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; }
.tabs { display: flex; align-items: center; gap: 2px; }
.tabs a, .tabs span { font-size: 14px; font-weight: 500; color: var(--blue); padding: 6px 11px; border-radius: 8px; }
.tabs a:hover { text-decoration: none; background: var(--fill); }
.tabs .soon { color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; }
.tabs .soon::after { content: "bald"; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--fill); color: var(--ink-3); padding: 2px 6px; border-radius: 980px; }
@media (max-width: 720px) { .tabs .soon { display: none; } }

/* --------------------------------------------------------- HERO ----- */
.hero { padding: 40px 0 8px; }
.crumb { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.crumb a { color: var(--ink-3); }
.crumb a:hover { color: var(--blue); }
.crumb svg { width: 11px; height: 11px; color: var(--line); }
.hero .kicker { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 8px; }
.hero h1 { font-size: clamp(30px, 5vw, 46px); letter-spacing: -.03em; line-height: 1.06; }
.hero .lede { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); margin-top: 14px; line-height: 1.42; letter-spacing: -.012em; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-2); background: var(--card); border: .5px solid rgba(0,0,0,.08); border-radius: 980px; padding: 6px 13px; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.badge svg { width: 14px; height: 14px; color: var(--green-d); }

/* ------------------------------------------------- CALC LAYOUT ------ */
.calc { display: grid; gap: 18px; align-items: start; margin-top: 30px; }
@media (min-width: 920px) { .calc { grid-template-columns: 1fr 380px; gap: 22px; } }

/* iOS grouped list card */
.group { background: var(--card); border-radius: var(--r-card); box-shadow: 0 1px 3px rgba(0,0,0,.05); overflow: hidden; }
.group + .group { margin-top: 16px; }
.group-hd { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); padding: 16px 18px 8px; }

.row { display: flex; align-items: center; gap: 14px; padding: 0 18px; min-height: 54px; position: relative; }
.row + .row::before { content: ""; position: absolute; top: 0; left: 18px; right: 0; height: .5px; background: var(--sep); }
.row .rl { font-size: 16px; font-weight: 400; color: var(--ink); flex: none; min-width: 0; }
.row .rl small { display: block; font-size: 12px; color: var(--ink-3); font-weight: 400; margin-top: 1px; }
.row .rc { margin-left: auto; display: flex; align-items: center; gap: 8px; min-width: 0; }
.row.muted .rl { color: var(--ink-3); }
.row.muted .val-input { color: var(--ink-3); }

/* trailing value input (iOS detail style) */
.val-input { font: 500 16px/1 var(--font); color: var(--ink); text-align: right; border: none; background: transparent; width: 110px; padding: 0; -webkit-appearance: none; appearance: none; }
.val-input:focus { outline: none; color: var(--blue); }
.val-unit { font-size: 16px; color: var(--ink-3); }

/* iOS menu (select) */
.menu { display: inline-flex; align-items: center; gap: 5px; font: 500 16px/1 var(--font); color: var(--blue); background: transparent; border: none; cursor: pointer; padding: 6px 0; max-width: 100%; }
.menu select { font: inherit; color: inherit; border: none; background: transparent; -webkit-appearance: none; appearance: none; cursor: pointer; max-width: 230px; text-align: right; direction: rtl; }
.menu select:focus { outline: none; }
.menu .chev { width: 13px; height: 13px; color: var(--ink-3); flex: none; }

/* iOS segmented control */
.seg { display: inline-flex; background: var(--fill); border-radius: 9px; padding: 2px; }
.seg button { border: none; background: transparent; font: 500 14px/1 var(--font); color: var(--ink); padding: 7px 14px; border-radius: 7px; cursor: pointer; transition: all .2s var(--ease); position: relative; }
.seg button[aria-pressed="true"] { background: var(--card); box-shadow: 0 1px 3px rgba(0,0,0,.16), 0 0 0 .5px rgba(0,0,0,.04); font-weight: 600; }

/* iOS slider */
.slider-row { padding: 14px 18px 18px; }
.slider-row .sr-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.slider-row .sr-top .rl { font-size: 16px; }
.slider-row .sr-top b { font-size: 16px; font-weight: 600; color: var(--blue); font-variant-numeric: tabular-nums; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--blue) 0 58%, var(--fill) 58% 100%); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.3), 0 0 0 .5px rgba(0,0,0,.04); cursor: pointer; }
input[type=range]::-moz-range-thumb { width: 26px; height: 26px; border: none; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.3); cursor: pointer; }

/* --------------------------------------------- RESULT (App tile) --- */
.result { position: sticky; top: 66px; }
.result-card { background: linear-gradient(165deg, #41648a 0%, #5a7e9f 50%, #7a99b4 100%); color: #fff; border-radius: 20px; padding: 26px 24px; box-shadow: 0 12px 40px rgba(50,80,115,.32); border: .5px solid rgba(255,255,255,.18); }
.result-card .rc-top { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .04em; }
.result-card .rc-top .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.result-card .big { font-size: clamp(44px, 8vw, 58px); font-weight: 700; letter-spacing: -.04em; line-height: 1; margin: 14px 0 2px; font-variant-numeric: tabular-nums; }
.result-card .big .cur { color: rgba(255,255,255,.45); font-weight: 600; }
.result-card .ctx { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.result-card .bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 18px; background: rgba(255,255,255,.18); }
.result-card .bar i { display: block; height: 100%; transition: width .4s var(--ease); }
.result-card .legend { display: flex; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.result-card .legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.7); }
.result-card .legend i { width: 9px; height: 9px; border-radius: 3px; }
.rrow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; border-top: .5px solid rgba(255,255,255,.16); font-size: 14px; }
.rrow span { color: rgba(255,255,255,.65); }
.rrow b { font-weight: 500; font-variant-numeric: tabular-nums; }
.rrow.total { border-top: .5px solid rgba(255,255,255,.3); margin-top: 2px; padding-top: 14px; }
.rrow.total span { color: #fff; font-weight: 600; font-size: 16px; }
.rrow.total b { font-weight: 700; font-size: 16px; color: #fff; }
.reset { display: block; width: 100%; margin-top: 18px; height: 46px; border: none; border-radius: 12px; background: rgba(255,255,255,.18); color: #fff; font: 600 15px/1 var(--font); cursor: pointer; transition: background .2s var(--ease); }
.reset:hover { background: rgba(255,255,255,.28); }

/* detail breakdown (grouped-list look) */
.breakdown { margin-top: 14px; background: var(--card); border-radius: var(--r-card); box-shadow: 0 1px 3px rgba(0,0,0,.05); overflow: hidden; }
.breakdown summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; font-size: 15px; font-weight: 600; color: var(--blue); }
.breakdown summary::-webkit-details-marker { display: none; }
.breakdown summary .chev { width: 16px; height: 16px; flex: none; transition: transform .25s var(--ease); }
.breakdown[open] summary .chev { transform: rotate(180deg); }
.dgrid .dr { display: flex; justify-content: space-between; gap: 12px; padding: 11px 18px; font-size: 14px; border-top: .5px solid var(--sep); }
.dgrid .dr span { color: var(--ink-2); }
.dgrid .dr b { font-variant-numeric: tabular-nums; font-weight: 600; }
.dgrid .dr.sub span { padding-left: 14px; color: var(--ink-3); }
.dgrid .dr.head { background: rgba(120,120,128,.06); font-weight: 700; }
.dgrid .dr.head span { color: var(--ink); }

/* ------------------------------------------------------ AD --------- */
.ad-slot { max-width: var(--wrap); margin: 40px auto 0; padding: 0 20px; }
.ad-slot .ad-box { border: 1px dashed var(--line); border-radius: var(--r-card); min-height: 90px; display: grid; place-items: center; color: var(--ink-3); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; background: rgba(120,120,128,.04); }

/* ------------------------------------------------------ CONTENT ---- */
.section { padding: 48px 0; border-top: .5px solid rgba(0,0,0,.08); margin-top: 48px; }
.section:first-of-type { border-top: none; }
.section > .wrap > h2 { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -.026em; margin-bottom: 10px; }
.section .intro { font-size: 18px; color: var(--ink-2); line-height: 1.45; margin-bottom: 28px; }

.answer { background: linear-gradient(165deg, #eef3f8 0%, #f7fafc 100%); border-radius: var(--r-card); padding: 22px 24px; box-shadow: 0 1px 3px rgba(0,0,0,.05); border-left: 4px solid #5a7e9f; margin-bottom: 30px; }
.answer .a-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #41648a; margin-bottom: 8px; }
.answer p { font-size: 18px; color: var(--ink); line-height: 1.5; }
.answer p + p { margin-top: 12px; }
.answer strong { font-weight: 700; }

.prose h3 { font-size: 21px; letter-spacing: -.02em; margin: 32px 0 12px; }
.prose p { font-size: 17px; color: var(--ink-2); line-height: 1.55; margin-bottom: 14px; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul { margin: 0 0 16px; padding: 0; list-style: none; }
.prose ul li { position: relative; font-size: 17px; color: var(--ink-2); line-height: 1.55; padding-left: 22px; margin-bottom: 8px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: #7a99b4; }
.prose ul li strong { color: var(--ink); font-weight: 600; }

/* inset list */
.ilist { background: var(--card); border-radius: var(--r-card); box-shadow: 0 1px 3px rgba(0,0,0,.05); overflow: hidden; margin: 8px 0 24px; }
.ilist .ir { display: flex; gap: 14px; padding: 16px 18px; position: relative; }
.ilist .ir + .ir::before { content: ""; position: absolute; top: 0; left: 52px; right: 0; height: .5px; background: var(--sep); }
.ilist .ir .ico { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(165deg, #5a7e9f, #7a99b4); color: #fff; display: grid; place-items: center; flex: none; }
.ilist .ir .ico svg { width: 15px; height: 15px; }
.ilist .ir .it { font-size: 16px; color: var(--ink-2); line-height: 1.45; }
.ilist .ir .it strong { color: var(--ink); font-weight: 600; }

/* formula card (Steel-Blue tint) */
.formula { background: linear-gradient(165deg, #eef3f8 0%, #f7fafc 100%); border-radius: var(--r-card); padding: 22px 24px; box-shadow: 0 1px 3px rgba(0,0,0,.05); border-left: 4px solid #5a7e9f; margin: 18px 0 24px; }
.formula .f { font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; color: #2f4b66; letter-spacing: -.02em; line-height: 1.3; }
.formula .fn { margin-top: 10px; color: var(--ink-2); font-size: 14px; line-height: 1.5; }

/* --------------------------------------------------------- TABLE --- */
.tcard { background: var(--card); border-radius: var(--r-card); box-shadow: 0 1px 3px rgba(0,0,0,.05); overflow: hidden; }
.tcard.scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 14px 20px; }
thead th { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-3); background: rgba(120,120,128,.06); }
tbody td { border-top: .5px solid var(--sep); }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
tr.is-current { background: rgba(65,100,138,.08); }
tr.is-current td:first-child { box-shadow: inset 3px 0 0 #5a7e9f; }
tr.sum td { font-weight: 700; color: var(--ink); border-top: .5px solid var(--line); }

/* ----------------------------------------------------------- FAQ -- */
.faq details { background: var(--card); border-radius: var(--r-card); box-shadow: 0 1px 3px rgba(0,0,0,.05); margin-bottom: 10px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; font-size: 17px; font-weight: 600; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 18px; height: 18px; color: var(--ink-3); flex: none; transition: transform .25s var(--ease); }
.faq details[open] summary .chev { transform: rotate(90deg); }
.faq .fb { padding: 0 20px 20px; font-size: 16px; color: var(--ink-2); line-height: 1.5; }

.source { margin-top: 24px; background: var(--fill); border-radius: var(--r-card); padding: 20px 22px; }
.source .st { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); margin-bottom: 8px; }
.source p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.metarow { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; font-size: 13px; color: var(--ink-3); }
.metarow .mi { display: inline-flex; align-items: center; gap: 6px; }
.metarow .mi svg { width: 14px; height: 14px; }

/* --------------------------------------------------------- CARDS -- */
.cards { display: grid; gap: 14px; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.clink { display: flex; align-items: center; gap: 14px; background: var(--card); border-radius: var(--r-card); padding: 18px 20px; box-shadow: 0 1px 3px rgba(0,0,0,.05); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.clink:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); text-decoration: none; }
.clink .ci { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(165deg, #5a7e9f, #7a99b4); color: #fff; display: grid; place-items: center; flex: none; }
.clink .ci svg { width: 21px; height: 21px; }
.clink .ct { min-width: 0; }
.clink h4 { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.clink p { font-size: 13px; color: var(--ink-3); margin-top: 2px; line-height: 1.35; }
.clink .arr { margin-left: auto; color: var(--ink-3); flex: none; }
.clink .arr svg { width: 16px; height: 16px; }

/* -------------------------------------------------------- FOOTER -- */
footer.ft { margin-top: 56px; background: var(--card); border-top: .5px solid rgba(0,0,0,.1); padding: 40px 0 26px; }
.ft-cols { display: grid; gap: 28px 22px; grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .ft-cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.fc-brand p { font-size: 12px; color: var(--ink-3); margin-top: 10px; max-width: 30ch; line-height: 1.5; }
.ft-cols h5 { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.ft-cols a { display: block; font-size: 13px; color: var(--ink-2); padding: 5px 0; }
.ft-cols a:hover { color: var(--blue); }
.ft-base { font-size: 12px; color: var(--ink-3); padding-top: 18px; margin-top: 26px; border-top: .5px solid var(--sep); display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: space-between; }
.ft-disc { font-size: 12px; color: var(--ink-3); line-height: 1.5; padding-bottom: 18px; border-bottom: .5px solid var(--sep); margin-bottom: 22px; }

/* =====================================================================
   HUB-KOMPONENTEN (Themen-Hub & Übersichts-Hub)
   ===================================================================== */
.sec-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.sec-jump a { font-size: 13px; font-weight: 500; color: var(--ink-2); background: var(--card); border: .5px solid rgba(0,0,0,.08); border-radius: 980px; padding: 7px 14px; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.sec-jump a:hover { text-decoration: none; color: var(--blue); }

.featured { display: grid; gap: 22px; background: var(--card); border-radius: var(--r-card); box-shadow: 0 1px 3px rgba(0,0,0,.05); padding: 26px; margin-top: 28px; }
@media (min-width: 820px) { .featured { grid-template-columns: 1.2fr 1fr; align-items: center; padding: 34px 36px; gap: 40px; } }
.ft-flag { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #41648a; background: linear-gradient(165deg, #eef3f8, #f7fafc); border: .5px solid rgba(65,100,138,.2); border-radius: 980px; padding: 5px 12px; }
.ft-main h2 { font-size: clamp(22px, 3vw, 28px); letter-spacing: -.024em; margin: 14px 0 10px; }
.ft-main p { color: var(--ink-2); font-size: 16px; line-height: 1.5; margin-bottom: 22px; max-width: 46ch; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 22px; border-radius: 12px; background: linear-gradient(165deg, #41648a, #5a7e9f); color: #fff; font-size: 15px; font-weight: 600; box-shadow: 0 6px 18px rgba(50,80,115,.28); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.btn-primary:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(50,80,115,.34); }
.btn-primary svg { width: 16px; height: 16px; }
.ft-preview { display: flex; min-width: 0; }
.ft-chip { width: 100%; min-width: 0; background: linear-gradient(165deg, #41648a 0%, #5a7e9f 50%, #7a99b4 100%); border-radius: var(--r-card); padding: 22px 24px; color: #fff; box-shadow: 0 12px 40px rgba(50,80,115,.28); border: .5px solid rgba(255,255,255,.18); }
.ftc-label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.7); }
.ftc-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; margin-top: 13px; }
.ftc-row .a { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.92); white-space: nowrap; }
.ftc-row b { font-size: 25px; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ftc-row svg { width: 18px; height: 18px; opacity: .7; flex: none; }
.ftc-note { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 11px; }

.sec { padding-top: 44px; margin-top: 44px; border-top: .5px solid rgba(0,0,0,.08); scroll-margin-top: 64px; }
.sec-head { margin-bottom: 20px; }
.sec-head .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.sec-head h2 { font-size: clamp(24px, 3.2vw, 32px); letter-spacing: -.026em; margin: 8px 0 8px; }
.sec-head p { color: var(--ink-2); font-size: 17px; line-height: 1.45; max-width: 64ch; }

.tilegrid { display: grid; gap: 14px; }
@media (min-width: 620px) { .tilegrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .tilegrid { grid-template-columns: repeat(3, 1fr); } }
.link-card { display: flex; flex-direction: column; gap: 8px; background: var(--card); border-radius: var(--r-card); box-shadow: 0 1px 3px rgba(0,0,0,.05); padding: 20px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.link-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); text-decoration: none; }
.lc-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 2px; }
.lc-icon { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(165deg, #5a7e9f, #7a99b4); color: #fff; display: grid; place-items: center; flex: none; }
.link-card.is-wissen .lc-icon { background: var(--fill); color: var(--ink-2); }
.lc-flag { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #41648a; background: linear-gradient(165deg, #eef3f8, #f7fafc); border: .5px solid rgba(65,100,138,.2); border-radius: 980px; padding: 3px 9px; }
.link-card h4 { font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -.015em; }
.link-card p { font-size: 14px; color: var(--ink-3); line-height: 1.45; }
.lc-cta { margin-top: auto; padding-top: 6px; font-size: 14px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.lc-cta svg { width: 15px; height: 15px; transition: transform .15s ease; }
.link-card:hover .lc-cta svg { transform: translateX(3px); }

.tile-soon { display: flex; flex-direction: column; gap: 8px; background: var(--bg); border: 1px dashed var(--line); border-radius: var(--r-card); padding: 20px; }
.tile-soon .lc-icon { background: var(--fill); color: var(--ink-3); }
.tile-soon h4 { font-size: 17px; color: var(--ink-3); font-weight: 600; }
.tile-soon p { font-size: 14px; color: var(--ink-3); line-height: 1.45; }
.soon-pill { font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3); background: var(--card); border: .5px solid var(--line); border-radius: 980px; padding: 3px 9px; }

.clink.is-soon { background: var(--bg); border: 1px dashed var(--line); box-shadow: none; }
.clink.is-soon .ci { background: var(--fill); color: var(--ink-3); }
.clink.is-soon h4 { color: var(--ink-3); }
.clink .soon-pill { margin-left: auto; flex: none; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
