/* ============================================================
   David Krause · unifyweave.ai — gemeinsames Stylesheet
   Wird von index.html und index_en.html geladen.
   ============================================================ */
/* Selbst gehostete Fonts (DSGVO) — WOFF2-Dateien in ./fonts/ ablegen, siehe fonts/README.txt.
   Fehlen die Dateien, greifen die Fallback-Schriften automatisch. */
@font-face{font-family:'Playfair Display';src:url('fonts/playfair-display-v37-latin-regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Playfair Display';src:url('fonts/playfair-display-v37-latin-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Playfair Display';src:url('fonts/playfair-display-v37-latin-italic.woff2') format('woff2');font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:'Source Sans 3';src:url('fonts/source-sans-3-v18-latin-regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Source Sans 3';src:url('fonts/source-sans-3-v18-latin-300.woff2') format('woff2');font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Source Sans 3';src:url('fonts/source-sans-3-v18-latin-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'JetBrains Mono';src:url('fonts/jetbrains-mono-v20-latin-regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'JetBrains Mono';src:url('fonts/jetbrains-mono-v20-latin-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}

:root {
  --ink:        #0a0f1a;
  --ink-80:     #1a2236;
  --ink-60:     #334155;
  --ink-40:     #64748b;
  --ink-20:     #94a3b8;
  --ink-10:     #e2e8f0;
  --white:      #ffffff;
  --accent:     #2563eb;
  --accent-v:   #3b82f6;
  --accent-d:   #1e40af;
  --accent-s:   rgba(59,130,246,0.10);
  --green:      #10b981;
  --green-bg:   rgba(16,185,129,0.07);
  --amber:      #f59e0b;
  --rule:       rgba(255,255,255,0.07);
  --rule-2:     rgba(255,255,255,0.04);
  --display:    'Playfair Display', Georgia, serif;
  --sans:       'Source Sans 3', system-ui, sans-serif;
  --mono:       'JetBrains Mono', monospace;
  --max:        1080px;
  --r:          10px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--accent-v); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,26,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
  padding: .8rem 0;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .55rem; text-decoration: none;
}
.nav-logo-icon { width: 28px; height: 28px; }
.nav-logo-name {
  font-family: var(--mono); font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,0.8); letter-spacing: .04em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none; font-size: .83rem;
}
.nav-links a { color: rgba(255,255,255,0.38); transition: color .15s; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: .38rem .9rem; border-radius: 6px;
  font-weight: 600; transition: background .15s;
}
.nav-cta:hover { background: var(--accent-d) !important; }

/* ── MOBILE NAV TOGGLE (hamburger) ── */
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px; width: 40px; height: 36px; cursor: pointer;
  padding: 0; align-items: center; justify-content: center; margin-left: .4rem;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: rgba(255,255,255,.85);
  position: relative; transition: background .15s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: rgba(255,255,255,.85); transition: transform .2s, top .2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 680px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0f1626; border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    padding: .6rem 1.5rem 1.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a,
  .nav-links .nav-drop > button {
    display: block; width: 100%; padding: .7rem .2rem;
    border-bottom: 1px solid rgba(255,255,255,.06); font-size: .95rem;
  }
  .nav-links .nav-cta { margin-top: .8rem; text-align: center; border-bottom: none; }
}

/* ── HERO ── */
.hero {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(37,99,235,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(59,130,246,0.04) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
}

/* Portrait */
.portrait-col { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.portrait-ring {
  width: 190px; height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(59,130,246,0.22);
  box-shadow: 0 0 0 6px rgba(59,130,246,0.06), 0 24px 48px rgba(0,0,0,0.5);
  flex-shrink: 0;
  position: relative;
}
.portrait-ring img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}
/* Status badge */
.status-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.28);
  color: var(--green);
  padding: .35rem .8rem; border-radius: 999px;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Sidebar-style info chips */
.hero-chips {
  display: flex; flex-direction: column; gap: .4rem; width: 100%;
}
.chip {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .62rem; font-weight: 400;
  color: rgba(255,255,255,0.42); letter-spacing: .03em;
  padding: .35rem .7rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 5px;
}
.chip-ok { color: var(--green); font-weight: 600; margin-right: .1rem; }
.chip-ic { color: var(--accent-v); margin-right: .1rem; }

/* Hero text */
.hero-text {}
.hero-eyebrow {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-v); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
}
.hero-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--accent-v); opacity: .5;
}
.hero-name {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -.02em; color: #fff;
  margin-bottom: .35rem;
}
.hero-role {
  font-family: var(--mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-v); margin-bottom: 1.5rem;
}
.hero-pitch {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,0.5); max-width: 540px;
  font-weight: 300; font-style: italic;
  border-left: 2px solid rgba(59,130,246,0.3);
  padding-left: 1.1rem; margin-bottom: 1.75rem;
}
.hero-pitch strong {
  font-style: normal; font-weight: 600; color: rgba(255,255,255,0.8);
}
.hero-contact {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .88rem; font-weight: 300;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.75rem;
}
.hero-contact span { display: flex; align-items: center; gap: .3rem; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-p {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent); color: #fff;
  padding: .75rem 1.5rem; border-radius: var(--r);
  font-size: .9rem; font-weight: 600;
  transition: background .15s, transform .15s; text-decoration: none;
}
.btn-p:hover { background: var(--accent-d); transform: translateY(-1px); text-decoration: none; }
.btn-g {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,0.6);
  padding: .75rem 1.25rem; border-radius: var(--r);
  font-size: .9rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .15s; text-decoration: none;
}
.btn-g:hover { border-color: rgba(255,255,255,0.3); color: #fff; text-decoration: none; }

/* ── SECTION BASE ── */
.sec { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.sec-mid { background: rgba(255,255,255,0.018); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.sec-label {
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-v); margin-bottom: .65rem; display: block;
}
.sec-title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1; font-weight: 400;
  color: #fff; margin: 0 0 .85rem;
}
.sec-title strong { font-style: normal; }
.sec-desc {
  font-size: .97rem; color: rgba(255,255,255,0.42);
  max-width: 600px; margin: 0 0 2.5rem;
  line-height: 1.72; font-weight: 300;
}

/* ── PROFIL ── */
.profile-text {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.8; color: rgba(255,255,255,0.55);
  max-width: 780px;
}
.profile-text strong {
  font-style: normal; font-weight: 500; color: rgba(255,255,255,0.88);
}

/* ── LEISTUNGEN (3 Kacheln) ── */
.cards-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 760px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: var(--r);
  padding: 1.6rem 1.5rem;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-3px); }
.card-icon {
  width: 36px; height: 36px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.22);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 1rem; margin-bottom: 1rem;
}
.card-title {
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: .55rem;
}
.card-desc {
  font-size: .88rem; color: rgba(255,255,255,0.42);
  line-height: 1.65; margin-bottom: .9rem; font-weight: 300;
}
.card-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.ctag {
  font-family: var(--mono); font-size: .58rem; font-weight: 500;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  color: var(--accent-v); padding: .15rem .5rem;
  border-radius: 3px; letter-spacing: .04em;
}

/* ── ERFAHRUNG TIMELINE ── */
.timeline { padding-left: 1.4rem; border-left: 1px solid var(--rule); }
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -1.85rem; top: .4rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid var(--ink);
}
.tl-dot.current {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.tl-period {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: .2rem;
}
.tl-role { font-size: .97rem; color: rgba(255,255,255,0.88); margin-bottom: .15rem; }
.tl-role strong { color: #fff; font-weight: 600; }
.tl-co { font-size: .82rem; color: var(--accent-v); margin-bottom: .45rem; }
.tl-detail { font-size: .85rem; color: rgba(255,255,255,0.42); line-height: 1.7; font-weight: 300; }
.tl-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .6rem; }
.ttag {
  font-family: var(--mono); font-size: .56rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45); padding: .12rem .45rem; border-radius: 3px;
}

/* ── SPAIN SETUP ── */
.setup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .setup-grid { grid-template-columns: 1fr; } }
.setup-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r); padding: 1.25rem 1.4rem;
}
.setup-card.highlight {
  background: rgba(16,185,129,0.04);
  border-color: rgba(16,185,129,0.22);
}
.setup-card-label {
  font-family: var(--mono); font-size: .57rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.setup-card.highlight .setup-card-label { color: rgba(16,185,129,0.6); }
.check-row { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .35rem; }
.ck-green { color: var(--green); font-size: .75rem; flex-shrink: 0; line-height: 1.8; }
.ck-blue { color: var(--accent-v); font-size: .75rem; flex-shrink: 0; line-height: 1.8; }
.check-row span { font-size: .88rem; color: rgba(255,255,255,0.55); font-weight: 300; }

/* ── SPRACHEN ── */
.lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 600px) { .lang-grid { grid-template-columns: 1fr; } }
.lang-item { padding: 1rem 1.25rem; background: rgba(255,255,255,0.022); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
.lang-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .55rem; }
.lang-name { font-size: .92rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.lang-level { font-family: var(--mono); font-size: .6rem; color: rgba(255,255,255,0.32); }
.lang-bar { height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.lang-fill { height: 100%; border-radius: 2px; background: var(--accent-v); }

/* ── AUSBILDUNG ── */
.edu-card {
  display: flex; justify-content: space-between; align-items: flex-start;
  background: rgba(255,255,255,0.022); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r); padding: 1.4rem 1.5rem; gap: 1rem; flex-wrap: wrap;
}
.edu-title { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: .2rem; }
.edu-sub { font-size: .85rem; color: var(--accent-v); margin-bottom: .5rem; }
.edu-detail { font-size: .83rem; color: rgba(255,255,255,0.42); font-weight: 300; }
.edu-year { font-family: var(--mono); font-size: .68rem; color: rgba(255,255,255,0.25); white-space: nowrap; }

/* ── DOWNLOAD ── */
.dl-card {
  display: grid; grid-template-columns: 1fr auto;
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.18);
  border-radius: var(--r); padding: 1.6rem 1.75rem; gap: 2rem; align-items: center;
}
@media (max-width: 600px) { .dl-card { grid-template-columns: 1fr; gap: 1rem; } }
.dl-eyebrow {
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--green); margin-bottom: .5rem;
}
.dl-title { font-family: var(--display); font-size: 1.35rem; color: #fff; margin-bottom: .35rem; }
.dl-desc { font-size: .88rem; color: rgba(255,255,255,0.42); font-weight: 300; }
.dl-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent); color: #fff;
  padding: .8rem 1.4rem; border-radius: var(--r);
  font-weight: 600; font-size: .88rem; white-space: nowrap;
  text-decoration: none; transition: background .15s, transform .15s;
}
.dl-btn-g {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,0.55); background: transparent;
  padding: .8rem 1.4rem; border-radius: var(--r);
  font-weight: 500; font-size: .85rem; white-space: nowrap;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.14);
  transition: all .15s;
}
.dl-btn-g:hover { color: #fff; border-color: rgba(255,255,255,0.35); text-decoration: none; }
.dl-btn:hover { background: var(--accent-d); transform: translateY(-1px); text-decoration: none; }

/* ── FOOTER ── */
footer {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--rule);
  padding: 2.25rem 0 1.75rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.footer-brand-name { font-family: var(--mono); font-size: .72rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: .06em; }
.footer-tagline { font-family: var(--display); font-style: italic; font-size: .88rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,0.28); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-btm {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 1.25rem;
  font-family: var(--mono); font-size: .58rem;
  color: rgba(255,255,255,0.16); letter-spacing: .06em;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}

/* ── IMPRESSUM INLINE MODAL ── */
.imp-modal {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.imp-modal.open { display: flex; }
.imp-box {
  background: #111827; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 2rem 2.25rem; max-width: 560px; width: 100%;
  max-height: 80vh; overflow-y: auto; position: relative;
}
.imp-close {
  position: absolute; top: 1rem; right: 1.1rem;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 1.4rem; cursor: pointer; line-height: 1; transition: color .15s;
}
.imp-close:hover { color: #fff; }
.imp-box h2 { font-family: var(--display); font-size: 1.5rem; color: #fff; margin-bottom: 1.25rem; font-style: italic; }
.imp-box h3 { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-v); margin: 1.25rem 0 .5rem; }
.imp-box p, .imp-box li { font-size: .88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: .3rem; }
.imp-box table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.imp-box td { padding: .3rem 0; color: rgba(255,255,255,0.5); vertical-align: top; }
.imp-box td:first-child { font-weight: 600; color: rgba(255,255,255,0.65); min-width: 130px; }

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* METRIC CARDS */
.metrics-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.1rem; margin-top:.5rem; }
.metric-card { background:var(--white); border:1px solid var(--ink-10); border-radius:14px; padding:1.6rem 1.4rem; text-align:center; box-shadow:0 1px 2px rgba(10,15,26,.04); }
.metric-val { font-family:var(--mono); font-size:2.3rem; font-weight:700; color:var(--accent); line-height:1; }
.metric-label { font-size:.92rem; color:var(--ink-80); font-weight:600; margin-top:.7rem; }
.metric-sub { font-size:.78rem; color:var(--ink-40); margin-top:.3rem; }
/* KI SECTION */
.ki-grid { display:grid; grid-template-columns:1.6fr 1fr; gap:1.3rem; margin-top:.5rem; }
.ki-box { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.10); border-radius:14px; padding:1.7rem; }
.ki-box.accent { background:linear-gradient(135deg,rgba(37,99,235,.10),rgba(59,130,246,.04)); border-color:rgba(59,130,246,.35); }
.ki-row { display:flex; gap:.7rem; align-items:flex-start; margin-bottom:.9rem; }
.ki-row:last-child { margin-bottom:0; }
.ki-name { font-weight:700; color:rgba(255,255,255,0.92); font-size:.95rem; }
.ki-desc { color:rgba(255,255,255,0.62); font-size:.88rem; line-height:1.5; margin-top:.2rem; }
.ki-shots { margin-top:1.6rem; display:grid; gap:1.4rem; }
.ki-shot { background:#f1f5f9; border:1px solid var(--ink-20); border-radius:14px; overflow:hidden; box-shadow:0 4px 16px rgba(10,15,26,.10); padding:10px; }
.ki-shot img { width:100%; height:auto; display:block; border-radius:8px; border:1px solid var(--ink-10); }
.ki-shot-cap { padding:.8rem .4rem .3rem; font-size:.78rem; color:var(--ink-60); }
.ki-shot-cap strong { color:var(--ink); font-weight:700; }
.ki-mark { color:var(--accent-v); font-family:var(--mono); font-weight:700; flex-shrink:0; }
@media(max-width:760px){ .metrics-3{grid-template-columns:1fr;} .ki-grid{grid-template-columns:1fr;} }
