/* ===================================================================
   YOL HARİTAN — Tasarım Sistemi
   Karakter analizi + meslek uyumu testi · raufenc.com
   Lacivert/teal gece teması · mobil-önce · erişilebilir · animasyonlu
   =================================================================== */
:root {
  --bg-0: #07101f;
  --bg-1: #0b1a2e;
  --bg-2: #122a3e;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-3: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --ink: #eef5fb;
  --ink-soft: #c4d4e2;
  --ink-mute: #8ba2b6;
  --ink-faint: #5f7589;
  --violet: #4db6c4;          /* teal primary */
  --violet-2: #66d0dd;
  --gold: #f6c453;
  --gold-2: #ffd97a;
  --c-R: #f59e0b; --c-I: #22d3ee; --c-A: #e879f9; --c-S: #34d399; --c-E: #fb7185; --c-C: #818cf8;
  --r-sm: 12px; --r-md: 18px; --r-lg: 26px; --r-xl: 34px; --r-pill: 999px;
  --sh-sm: 0 4px 14px rgba(0, 0, 0, 0.28);
  --sh-md: 0 14px 40px rgba(0, 0, 0, 0.4);
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", var(--font-body);
  --t-fast: 140ms cubic-bezier(.4, 0, .2, 1);
  --t: 240ms cubic-bezier(.34, 1.56, .64, 1);
  --t-slow: 480ms cubic-bezier(.22, 1, .36, 1);
  --maxw: 720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg-0); line-height: 1.55; min-height: 100svh; overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: var(--violet-2); text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.bg { position: fixed; inset: 0; z-index: -2;
  background: radial-gradient(1200px 800px at 15% -10%, #143a52 0%, transparent 55%),
    radial-gradient(1000px 700px at 100% 0%, #1d5b6e 0%, transparent 50%),
    radial-gradient(900px 900px at 50% 120%, #122a4e 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0)); }
.bg::after { content: ""; position: absolute; inset: -20%;
  background: radial-gradient(closest-side, rgba(77, 182, 196, .22), transparent), radial-gradient(closest-side, rgba(246, 196, 83, .12), transparent);
  background-size: 60% 60%, 45% 45%; background-position: 10% 10%, 85% 75%; background-repeat: no-repeat;
  animation: auroraShift 24s ease-in-out infinite alternate; filter: blur(20px); }
@keyframes auroraShift { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(4%, 3%) scale(1.1); } }
.stars { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.stars i { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff; opacity: .6; animation: twinkle var(--tw, 4s) ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: .15; } 50% { opacity: .9; } }

.app { position: relative; min-height: 100svh; display: flex; flex-direction: column; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.topbar { display: flex; align-items: center; gap: 10px; padding: 16px 20px; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.01em; }
.brand img { width: 34px; height: 34px; }
.brand small { display: block; font-weight: 500; font-size: .72rem; color: var(--ink-mute); letter-spacing: .02em; }
.topbar .home { margin-left: auto; font-size: .85rem; color: var(--ink-mute); display: flex; align-items: center; gap: 6px; }
.topbar .home:hover { color: var(--ink); }

.screen { display: none; flex: 1; padding: 8px 0 64px; animation: screenIn var(--t-slow) both; }
.screen.is-active { display: block; }
@keyframes screenIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; backdrop-filter: blur(10px); box-shadow: var(--sh-sm); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 15px 26px; border-radius: var(--r-pill); font-weight: 700; font-size: 1rem; transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast); border: 1px solid transparent; user-select: none; }
.btn:active { transform: scale(.97); }
.btn--primary { background: linear-gradient(135deg, var(--violet), #3b82c4); color: #03202a; box-shadow: 0 10px 30px rgba(77, 182, 196, .4); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold), #ff9d54); color: #2a1500; box-shadow: 0 10px 30px rgba(246, 196, 83, .4); }
.btn--gold:hover { transform: translateY(-2px); }
.btn--ghost { background: var(--surface-2); color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface-3); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--border); font-size: .82rem; font-weight: 600; color: var(--ink-soft); }

.hero { text-align: center; padding: 18px 0 8px; }
.hero .badge { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 22px; animation: floatY 4s ease-in-out infinite; }
.hero .compass-xl { width: 120px; height: 120px; filter: drop-shadow(0 12px 30px rgba(77, 182, 196, .55)); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero h1 { font-size: clamp(2rem, 7vw, 3.1rem); margin-bottom: 14px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--gold), var(--violet-2), var(--c-A)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(1rem, 3.5vw, 1.18rem); color: var(--ink-soft); max-width: 32ch; margin: 0 auto 26px; }
.hero-meta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.intro-cta { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.intro-cta .note { font-size: .82rem; color: var(--ink-mute); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px; text-align: left; }
.feature .ico { font-size: 1.5rem; margin-bottom: 8px; }
.feature h3 { font-size: .98rem; margin-bottom: 4px; }
.feature p { font-size: .82rem; color: var(--ink-mute); line-height: 1.45; }
.types-strip { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 30px 0 6px; }
.type-dot { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--sh-sm); transition: transform var(--t); }
.type-dot:hover { transform: translateY(-4px) scale(1.06); }
.disclaimer { margin-top: 30px; font-size: .8rem; color: var(--ink-mute); text-align: center; background: var(--surface); border: 1px dashed var(--border); border-radius: var(--r-md); padding: 14px 16px; line-height: 1.5; }

.quiz-head { position: sticky; top: 0; z-index: 20; padding: 12px 0 10px; background: linear-gradient(180deg, var(--bg-0) 60%, transparent); }
.progress-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; font-size: .82rem; color: var(--ink-mute); }
.progress-meta .sect { color: var(--ink-soft); font-weight: 600; }
.q { margin-top: 18px; animation: qIn var(--t-slow) both; }
@keyframes qIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
.q.is-leaving { animation: qOut 200ms forwards; }
@keyframes qOut { to { opacity: 0; transform: translateX(-28px); } }
.q__kicker { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--ink-mute); margin-bottom: 14px; font-weight: 600; }
.q__kicker .tag { padding: 4px 10px; border-radius: var(--r-pill); font-size: .72rem; }
.q__text { font-family: var(--font-display); font-size: clamp(1.3rem, 5vw, 1.7rem); font-weight: 700; margin-bottom: 6px; }
.q__hint { font-size: .9rem; color: var(--ink-mute); margin-bottom: 22px; }

.scale { display: grid; gap: 10px; }
.scale__opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 15px 18px; border-radius: var(--r-md); background: var(--surface); border: 1.5px solid var(--border); transition: all var(--t-fast); position: relative; }
.scale__opt:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-1px); }
.scale__opt .dot { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink-faint); flex: none; transition: all var(--t); display: grid; place-items: center; }
.scale__opt .dot::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--accent, var(--violet)); transform: scale(0); transition: transform var(--t); }
.scale__opt .lbl { font-weight: 600; }
.scale__opt.is-on { border-color: var(--accent, var(--violet)); background: color-mix(in srgb, var(--accent, var(--violet)) 16%, transparent); }
.scale__opt.is-on .dot { border-color: var(--accent, var(--violet)); }
.scale__opt.is-on .dot::after { transform: scale(1); }
.scale__opt .emoji { font-size: 1.25rem; }
.slider-wrap { padding: 20px 4px 6px; }
.slider-row { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ink-mute); margin-bottom: 14px; }
input[type="range"].slider { -webkit-appearance: none; appearance: none; width: 100%; height: 10px; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--accent, var(--violet)) var(--pct, 50%), var(--surface-2) var(--pct, 50%)); outline: none; }
input[type="range"].slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 32px; height: 32px; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, .4); cursor: grab; border: 4px solid var(--accent, var(--violet)); }
input[type="range"].slider::-moz-range-thumb { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 4px solid var(--accent, var(--violet)); cursor: grab; }
.slider-val { text-align: center; font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-top: 12px; color: var(--accent, var(--violet)); }
.choice { display: grid; gap: 14px; }
.choice__opt { text-align: left; padding: 20px; border-radius: var(--r-lg); background: var(--surface); border: 1.5px solid var(--border); transition: all var(--t-fast); display: flex; flex-direction: column; gap: 8px; }
.choice__opt:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--sh-md); }
.choice__opt.is-on { border-color: var(--accent, var(--violet)); background: color-mix(in srgb, var(--accent, var(--violet)) 14%, transparent); }
.choice__opt .emoji { font-size: 2rem; }
.choice__opt .t { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.choice__opt .d { font-size: .88rem; color: var(--ink-mute); }
.q-nav { display: flex; gap: 12px; margin-top: 26px; align-items: center; }
.q-nav .spacer { flex: 1; }

.calc { text-align: center; padding: 60px 0; }
.calc .spinner { width: 80px; height: 80px; margin: 0 auto 26px; border-radius: 50%; border: 4px solid var(--surface-3); border-top-color: var(--gold); animation: spin 900ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.calc h2 { font-size: 1.5rem; margin-bottom: 8px; }
.calc p { color: var(--ink-mute); }

.result-hero { text-align: center; padding: 32px 24px; border-radius: var(--r-xl); position: relative; overflow: hidden; background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent, var(--violet)) 30%, var(--bg-2)), var(--bg-1)); border: 1px solid var(--border-strong); box-shadow: var(--sh-md); }
.result-hero .arche-emoji { font-size: 4.6rem; line-height: 1; margin-bottom: 12px; animation: pop var(--t-slow) both; }
@keyframes pop { 0% { transform: scale(.3); opacity: 0; } 70% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.result-hero .eyebrow { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.result-hero .arche-name { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 6px; }
.result-hero .arche-code { font-family: var(--font-display); letter-spacing: .12em; font-weight: 800; color: var(--gold); margin-bottom: 14px; }
.result-hero .arche-tag { font-size: 1.05rem; color: var(--ink-soft); max-width: 36ch; margin: 0 auto; }
.section { margin-top: 30px; }
.section > h2 { font-size: 1.35rem; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.section > .sub { font-size: .9rem; color: var(--ink-mute); margin-bottom: 18px; }
.radar-card { display: grid; gap: 18px; }
@media (min-width: 560px) { .radar-card { grid-template-columns: 1fr 1fr; align-items: center; } }
.radar-svg { width: 100%; max-width: 320px; margin: 0 auto; }
.bars { display: grid; gap: 11px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 9px 15px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--border); font-weight: 600; font-size: .88rem; display: inline-flex; gap: 7px; align-items: center; }
.trait { padding: 16px 0; border-bottom: 1px solid var(--border); }
.trait:last-child { border-bottom: none; }
.trait .thead { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.trait .tname { font-weight: 700; font-family: var(--font-display); }
.trait .tscore { font-size: .82rem; color: var(--ink-mute); }
.trait .tdesc { font-size: .88rem; color: var(--ink-soft); margin-top: 6px; }
.careers { display: grid; gap: 12px; }
@media (min-width: 520px) { .careers { grid-template-columns: 1fr 1fr; } }
.career { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px; border-left: 4px solid var(--accent, var(--violet)); }
.career .cname { font-weight: 700; font-family: var(--font-display); margin-bottom: 4px; }
.career .cfields { margin-top: 4px; font-size: .84rem; color: var(--ink-soft); }
.career .yks { display: inline-block; margin-top: 8px; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); background: var(--surface-2); color: var(--gold-2); }
.dialogue-card { background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 12%, var(--bg-2)), var(--bg-1)); border-color: var(--border-strong); }
.qa-list { display: grid; gap: 12px; counter-reset: q; }
.qa { display: flex; gap: 13px; align-items: flex-start; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); }
.qa::before { counter-increment: q; content: counter(q); flex: none; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--gold)); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .85rem; font-family: var(--font-display); }
.qa p { font-size: .94rem; color: var(--ink-soft); }
.steps { display: grid; gap: 12px; }
.step { display: flex; gap: 13px; align-items: flex-start; }
.step .si { font-size: 1.4rem; flex: none; }
.step .st { font-weight: 700; font-family: var(--font-display); font-size: 1rem; }
.step .sd { font-size: .86rem; color: var(--ink-mute); }
.share-row { display: flex; flex-wrap: wrap; gap: 10px; }
.share-row .btn { flex: 1 1 auto; }
.result-foot { margin-top: 34px; text-align: center; font-size: .8rem; color: var(--ink-mute); line-height: 1.6; }

.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); background: var(--bg-2); border: 1px solid var(--border-strong); color: var(--ink); padding: 12px 20px; border-radius: var(--r-pill); box-shadow: var(--sh-md); opacity: 0; pointer-events: none; transition: all var(--t); z-index: 100; font-weight: 600; font-size: .9rem; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } .bg::after { animation: none; } }
@media print { .bg, .stars, .topbar, .q-nav, .share-row, .home, .btn, .zone-pick, .tabs, .summary-box, .summary-hint, .cdetail-toggle { display: none !important; } body { background: #fff; color: #111; } .result-hero { background: #eef6f7 !important; color: #111; border: 1px solid #ccc; } .result-hero .arche-name, .section > h2, .trait .tname, .career .cname { color: #0b1a2e; } .card, .career, .qa, .feature { background: #fff !important; border: 1px solid #ddd !important; color: #222; } .screen { display: block !important; } #screen-intro, #screen-quiz, #screen-calc { display: none !important; } }

/* segmentli ilerleme */
.segs { display: flex; gap: 6px; }
.seg { flex: 1; height: 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-pill); overflow: hidden; }
.seg--opt { border-style: dashed; opacity: .6; }
.seg__f { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--violet), var(--gold)); transition: width var(--t-slow); }
.micro { color: var(--gold-2); font-weight: 700; margin-left: auto; }
.turn-intro { text-align: center; padding: 46px 12px; animation: qIn var(--t-slow) both; }
.turn-emoji { font-size: 4rem; line-height: 1; margin-bottom: 10px; }
.turn-emoji.pop { animation: pop var(--t-slow) both; }
.turn-num { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.turn-intro h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); margin: 4px 0 8px; }
.scale--react { display: flex; gap: 8px; }
.scale--react .scale__opt { flex: 1; flex-direction: column; text-align: center; gap: 8px; padding: 16px 6px; }
.scale--react .emoji { font-size: 1.7rem; }
.scale--react .lbl { font-size: .7rem; font-weight: 600; line-height: 1.2; }
.result-band { text-align: center; font-size: .86rem; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px 16px; margin-bottom: 8px; }
.result-band em { color: var(--gold-2); font-style: normal; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.mini-badge { font-size: .78rem; padding: 5px 12px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--border); color: var(--ink-mute); }
.mini-badge b { color: var(--ink-soft); }
.zone-pick { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 16px; }
.zlabel { font-size: .84rem; color: var(--ink-mute); width: 100%; }
.zbtn { padding: 8px 14px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--border); font-size: .82rem; font-weight: 600; color: var(--ink-soft); transition: all var(--t-fast); }
.zbtn:hover { background: var(--surface-3); }
.zbtn.is-on { background: var(--violet); color: #03202a; border-color: var(--violet); }
.cmatch { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.cmatch.m3 { color: #34d399; } .cmatch.m2 { color: var(--gold-2); } .cmatch.m1 { color: var(--ink-soft); } .cmatch.m0 { color: var(--ink-mute); }
.trend { font-size: .66rem; background: color-mix(in srgb, var(--gold) 22%, transparent); color: var(--gold-2); padding: 2px 8px; border-radius: var(--r-pill); font-weight: 700; vertical-align: middle; }
.code-msg { margin-top: 14px; font-size: .9rem; color: var(--ink-soft); background: var(--surface); border-left: 3px solid var(--gold); border-radius: var(--r-sm); padding: 12px 14px; }
.tabs { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.tab { padding: 9px 14px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--border); font-size: .84rem; font-weight: 600; color: var(--ink-mute); transition: all var(--t-fast); }
.tab.is-on { background: linear-gradient(135deg, var(--violet), var(--gold)); color: #03202a; border-color: transparent; }
.guide { display: grid; gap: 12px; margin-bottom: 16px; }
@media (min-width: 480px) { .guide { grid-template-columns: 1fr 1fr; } }
.guide-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; }
.guide-col > b { display: block; margin-bottom: 8px; }
.guide-col ul { list-style: none; display: grid; gap: 6px; }
.guide-col li { font-size: .84rem; color: var(--ink-soft); }
.qa--star::before { content: "✦" !important; background: linear-gradient(135deg, var(--gold), #ff9d54) !important; }

/* sonuç barları (etiket üstte, çubuk altta) */
.btrack { display: block; height: 12px; background: var(--surface-2); border-radius: var(--r-pill); overflow: hidden; }
.bfill { display: block; height: 100%; width: 0; border-radius: var(--r-pill); transition: width 900ms cubic-bezier(.22, 1, .36, 1); }
.rbar { margin-bottom: 12px; }
.rbar:last-child { margin-bottom: 0; }
.rbar-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: .92rem; }
.rbar-h .blabel { font-weight: 600; display: flex; gap: 7px; align-items: center; }
.rbar-h .bval { color: var(--ink-mute); font-variant-numeric: tabular-nums; font-weight: 700; }
.poles { display: flex; justify-content: space-between; font-size: .72rem; color: var(--ink-faint); margin-bottom: 6px; }
.tag-R { background: color-mix(in srgb, var(--c-R) 22%, transparent); color: var(--c-R); }
.tag-I { background: color-mix(in srgb, var(--c-I) 22%, transparent); color: var(--c-I); }
.tag-A { background: color-mix(in srgb, var(--c-A) 22%, transparent); color: var(--c-A); }
.tag-S { background: color-mix(in srgb, var(--c-S) 22%, transparent); color: var(--c-S); }
.tag-E { background: color-mix(in srgb, var(--c-E) 22%, transparent); color: var(--c-E); }
.tag-C { background: color-mix(in srgb, var(--c-C) 22%, transparent); color: var(--c-C); }
.muted { color: var(--ink-mute); }
.en { color: var(--ink-faint); font-weight: 500; font-size: .82em; letter-spacing: 0; }

/* meslek kartı: why + açılır detay */
.cwhy { font-size: .82rem; color: var(--ink-soft); margin: 6px 0 2px; line-height: 1.4; }
.cdetail-toggle { margin-top: 8px; font-size: .76rem; font-weight: 700; color: var(--violet-2); background: none; padding: 2px 0; }
.cdetail-toggle:hover { color: var(--ink); }
.cdetail { display: none; margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--border); }
.cdetail p { font-size: .82rem; color: var(--ink-soft); margin-bottom: 6px; line-height: 1.45; }
.cdetail p:last-child { margin-bottom: 0; }
.career.is-open .cdetail { display: block; }
.career.is-open .cdetail-toggle { color: var(--gold-2); }

/* Konuşma Özeti kutusu */
.summary-box { display: none; width: 100%; min-height: 230px; margin-top: 12px; padding: 14px 16px; border-radius: var(--r-md); background: var(--bg-2); border: 1px solid var(--border-strong); color: var(--ink-soft); font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .82rem; line-height: 1.55; resize: vertical; white-space: pre-wrap; }
.summary-box.show { display: block; }
.summary-hint { font-size: .8rem; color: var(--ink-mute); margin-top: 8px; text-align: center; }
