/* Variables */
:root {
  --bg: #0f0f0e;
  --bg-secondary: #141412;
  --surface: #1a1917;
  --surface-hover: #26231f;
  --surface-soft: rgba(26, 25, 23, .94);
  --sidebar-bg: #0b0b0a;
  --sidebar-bg-secondary: #080807;
  --text: #f5f2ed;
  --text-secondary: #c5beb5;
  --text-muted: #8f8981;
  --sidebar-text: #f5f2ed;
  --sidebar-muted: #9e9890;
  --primary: #c4772d;
  --primary-hover: #df8f43;
  --primary-dark: #93551f;
  --primary-button: #aa6224;
  --primary-light: #df8f43;
  --primary-soft: rgba(196, 119, 45, .1);
  --purple: #a7754a;
  --success: #67a575;
  --border: rgba(255, 255, 255, .08);
  --border-bright: rgba(196, 119, 45, .3);
  --border-accent: rgba(196, 119, 45, .3);
  --border-dark: rgba(255, 255, 255, .07);
  --sidebar-width: 248px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --transition: 200ms ease;
  --shadow: 0 16px 40px rgba(0, 0, 0, .28);
  --content-max: 1240px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; scrollbar-color: #4b4540 var(--bg-secondary); scrollbar-width: thin; }
body, h1, h2, h3, h4, p, ul, ol, dl, dd, pre { margin: 0; }
ul, ol { padding: 0; }
img, svg { display: block; max-width: 100%; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

/* Base */
body {
  min-width: 320px;
  overflow-x: hidden;
  background: radial-gradient(circle at top right, rgba(196, 119, 45, .045), transparent 35%), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(196, 119, 45, .32); color: var(--text); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { border: 2px solid var(--bg-secondary); border-radius: 10px; background: #4b4540; }
::-webkit-scrollbar-thumb:hover { background: #67584b; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.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; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; border-radius: var(--radius-sm); background: var(--primary); color: #17120d; transform: translateY(-160%); transition: transform var(--transition); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 80px), var(--content-max)); margin-inline: auto; }
.page-shell, .site-footer { margin-left: var(--sidebar-width); }
.section { position: relative; padding: 104px 0; scroll-margin-top: 20px; }
.section--tinted { background: var(--bg-secondary); border-block: 1px solid rgba(255, 255, 255, .035); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2, .game-card h2, .project-panel h2, .jarvis-copy h2, .training-card h2, .contact-copy h2, .experience-card h2 {
  font-size: clamp(2.15rem, 4.1vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.045em;
}
.section-heading > p:last-child { margin-top: 16px; color: var(--text-secondary); font-size: 1.05rem; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--primary); font-size: .76rem; font-weight: 750; letter-spacing: .17em; line-height: 1.3; text-transform: uppercase; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(196, 119, 45, .1); }
.subtitle { color: var(--text-secondary); font-size: 1.12rem; }
.lead { color: var(--text); font-size: 1.19rem; line-height: 1.75; }
.mini-label { color: var(--primary); font-size: .72rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.reveal { opacity: 1; transform: none; transition: opacity 650ms ease, transform 650ms ease; }
.js-enabled .reveal { opacity: 0; transform: translateY(18px); }
.js-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 11px 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 700; line-height: 1.2; transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--primary-button); color: #fff; box-shadow: 0 8px 20px rgba(0, 0, 0, .18); }
.button--primary:hover { background: var(--primary-hover); color: #17120d; }
.button--secondary { border-color: rgba(255, 255, 255, .14); background: transparent; color: var(--text); }
.button--secondary:hover { border-color: var(--border-bright); background: var(--primary-soft); }
.button--small { min-height: 42px; padding: 9px 14px; border-radius: 10px; font-size: .88rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-left: 6px; color: var(--text-secondary); font-weight: 650; transition: color var(--transition); }
.text-link:hover { color: var(--primary); }
.text-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.is-disabled { cursor: not-allowed; opacity: .45; pointer-events: none; }

/* Sidebar */
.sidebar { position: fixed; z-index: 100; inset: 0 auto 0 0; display: flex; width: var(--sidebar-width); min-height: 100vh; flex-direction: column; justify-content: space-between; overflow-y: auto; padding: 0 0 24px; border-right: 1px solid var(--border-dark); background: linear-gradient(180deg, var(--sidebar-bg) 0%, var(--sidebar-bg-secondary) 100%); color: var(--sidebar-text); }
.brand { display: flex; align-items: center; gap: 13px; margin: 0 7px 35px; }
.brand__mark { display: inline-grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(196, 119, 45, .62); border-radius: 11px; background: rgba(196, 119, 45, .06); color: var(--primary); font-weight: 750; letter-spacing: -.03em; }
.brand strong { display: block; font-size: .98rem; line-height: 1.3; }
.brand small { display: block; margin-top: 3px; color: var(--text-secondary); font-size: .58rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.sidebar .brand { min-height: 198px; flex-direction: column; justify-content: center; gap: 14px; margin: 0; padding: 28px 20px 25px; border-bottom: 1px solid var(--border-dark); text-align: center; }
.sidebar .brand__mark { width: 72px; height: 72px; border-radius: 50%; color: var(--primary-light); font-size: 1.35rem; }
.sidebar .brand strong { color: var(--sidebar-text); font-size: 1.3rem; font-weight: 650; letter-spacing: -.02em; }
.sidebar .brand small { max-width: 170px; margin-top: 6px; color: var(--sidebar-muted); font-size: .61rem; letter-spacing: .14em; line-height: 1.5; }
.side-nav { display: grid; gap: 3px; padding: 24px 14px 18px; }
.side-nav__link { position: relative; display: flex; min-height: 45px; align-items: center; gap: 14px; padding: 10px 16px 10px 19px; border-radius: 0 8px 8px 0; color: var(--sidebar-muted); font-size: .84rem; font-weight: 600; transition: color var(--transition), background var(--transition); }
.side-nav__link::before { position: absolute; left: 0; width: 3px; height: 100%; border-radius: 0 3px 3px 0; background: var(--primary); content: ""; opacity: 0; transform: scaleY(.3); transition: opacity var(--transition), transform var(--transition); }
.side-nav__link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.side-nav__link:hover { color: var(--sidebar-text); background: rgba(255, 255, 255, .04); }
.side-nav__link.active { color: var(--sidebar-text); background: var(--primary-soft); }
.side-nav__link.active svg { color: var(--primary); }
.side-nav__link.active::before { opacity: 1; transform: scaleY(1); }
.sidebar__footer { display: grid; gap: 16px; margin-top: auto; padding: 21px 22px 0; border-top: 1px solid var(--border-dark); }
.social-links { display: flex; justify-content: center; gap: 10px; }
.icon-link { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--border-dark); border-radius: 10px; color: var(--sidebar-muted); transition: color var(--transition), border-color var(--transition), background var(--transition); }
.icon-link:hover { border-color: rgba(196, 119, 45, .65); background: var(--primary-soft); color: var(--primary-light); }
.icon-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Mobile Navigation */
.mobile-header { display: none; }

/* Hero */
.hero { min-height: 100vh; padding-top: 76px; overflow: hidden; background-color: transparent; background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px); background-size: 48px 48px; }
.hero::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, var(--bg) 96%); content: ""; pointer-events: none; }
.hero__glow { position: absolute; top: -180px; right: -100px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(196, 119, 45, .065), transparent 67%); pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; min-height: 590px; grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr); align-items: center; gap: 72px; }
.hero__content { max-width: 690px; }
.hero h1 { margin-bottom: 12px; font-size: clamp(4rem, 7.5vw, 7.2rem); font-weight: 850; letter-spacing: -.07em; line-height: .9; }
.hero h1 span { color: var(--primary); }
.hero__role { margin-bottom: 24px; color: #d7d1c8; font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 650; letter-spacing: -.025em; }
.hero__text { max-width: 665px; color: var(--text-secondary); font-size: 1.04rem; line-height: 1.8; }
.hero__motto { margin: 20px 0 29px; color: var(--text); font-size: .78rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 470px; display: grid; align-content: center; perspective: 1000px; }
.monitor { position: relative; z-index: 2; overflow: hidden; width: 100%; border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; background: #111; box-shadow: 0 20px 50px rgba(0, 0, 0, .35); transform: rotateY(-3deg) rotateX(1deg); }
.monitor__bar { display: flex; height: 42px; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid var(--border-dark); background: #181817; }
.monitor__bar span { width: 8px; height: 8px; border-radius: 50%; background: #5d5750; }
.monitor__bar span:nth-child(2) { background: rgba(196, 119, 45, .72); }
.monitor__bar small { margin-left: auto; color: #999187; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .7rem; }
.monitor pre { min-height: 290px; padding: 42px 35px; color: #d5cec5; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: clamp(.78rem, 1.12vw, .98rem); line-height: 1.9; white-space: pre-wrap; }
.code-purple { color: #d9c3a8; }.code-blue { color: #d49459; }.code-green { color: #94b28e; }.code-muted { color: #8f887f; }
.monitor-stand { position: relative; z-index: 1; width: 35%; height: 54px; margin: -1px auto 0; border-bottom: 7px solid #25231f; background: linear-gradient(90deg, transparent 10%, #191817 10%, #2d2a26 90%, transparent 90%); clip-path: polygon(35% 0, 65% 0, 72% 87%, 100% 87%, 100% 100%, 0 100%, 0 87%, 28% 87%); }
.visual-orbit { position: absolute; z-index: 3; display: grid; place-items: center; border: 1px solid rgba(196, 119, 45, .34); background: rgba(26, 25, 23, .96); color: var(--primary-light); box-shadow: 0 14px 30px rgba(0, 0, 0, .24); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.visual-orbit--one { top: 24px; right: -12px; width: 73px; height: 73px; border-radius: 17px; font-size: 1.25rem; transform: rotate(5deg); }
.visual-orbit--two { bottom: 30px; left: -24px; width: 60px; height: 60px; border-radius: 50%; }
.visual-orbit--two svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.branch-card { position: absolute; z-index: 3; right: -20px; bottom: 52px; width: 90px; height: 52px; border: 1px solid rgba(196, 119, 45, .25); border-radius: 12px; background: rgba(26, 25, 23, .98); }
.branch-card span { position: absolute; left: 21px; top: 9px; width: 2px; height: 32px; background: var(--primary); }
.branch-card i { position: absolute; width: 8px; height: 8px; border: 2px solid var(--primary-light); border-radius: 50%; background: var(--surface); }
.branch-card i:nth-child(2) { left: 18px; top: 7px; }.branch-card i:nth-child(3) { left: 18px; bottom: 6px; }.branch-card i:nth-child(4) { left: 53px; top: 22px; }
.branch-card::after { position: absolute; left: 24px; top: 25px; width: 32px; height: 12px; border-top: 2px solid var(--primary); border-right: 2px solid var(--primary); border-radius: 0 10px 0 0; content: ""; }
.overview-wrap { position: relative; z-index: 2; margin-top: 28px; }
.overview-card { padding: 24px 27px; border: 1px solid var(--border); border-radius: var(--radius-md); background: #191816; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.overview-card__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.status { display: inline-flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: .78rem; font-weight: 650; }
.status i, .training-card__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(95, 133, 104, .1); }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-top: 19px; }
.overview-grid dt { color: var(--text-secondary); font-size: .7rem; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
.overview-grid dd { margin-top: 3px; color: var(--text); font-size: .9rem; font-weight: 650; }

/* Location */
.location-section { position: relative; z-index: 3; margin-top: -56px; padding-bottom: 104px; scroll-margin-top: 20px; }
.location-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(310px, 1fr); align-items: stretch; gap: 28px; }
.location-image-card { position: relative; min-height: 520px; overflow: hidden; margin: 0; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); }
.location-image-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(36, 36, 34, .36)); content: ""; pointer-events: none; }
.location-image-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 700ms ease; }
.location-image-card:hover img { transform: scale(1.015); }
.location-badge { position: absolute; z-index: 2; bottom: 22px; left: 22px; display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 10px; background: rgba(41, 41, 39, .8); color: var(--sidebar-text); font-size: .75rem; font-style: normal; font-weight: 650; backdrop-filter: blur(10px); }
.location-badge svg { width: 17px; height: 17px; fill: none; stroke: var(--primary-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.location-info-card { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; padding: clamp(34px, 4vw, 52px); border: 1px solid var(--border); border-radius: var(--radius-xl); background: #191816; box-shadow: var(--shadow); }
.location-info-card h2 { margin-bottom: 24px; font-size: clamp(2rem, 3.2vw, 3.2rem); line-height: 1.05; letter-spacing: -.045em; }
.location-info-card__copy { display: grid; gap: 15px; margin-bottom: 28px; color: var(--text-secondary); font-size: .9rem; line-height: 1.75; }
.location-info-card .button { margin-top: auto; }

/* Cards */
.quality-card, .feature-card, .skills-panel, .strengths-panel, .project-card, .experience-card, .contact-card { border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow); }
.quality-card, .feature-card, .project-card { transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.quality-card:hover, .feature-card:hover, .project-card:hover { transform: translateY(-2px); border-color: rgba(196, 119, 45, .28); background: var(--surface-hover); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.tag-list li { padding: 5px 10px; border: 1px solid rgba(196, 119, 45, .18); border-radius: 8px; background: #24211d; color: #d7d0c6; font-size: .72rem; font-weight: 650; }
.badge { display: inline-flex; width: fit-content; padding: 4px 9px; border: 1px solid var(--border); border-radius: 7px; color: var(--text-secondary); font-size: .65rem; font-weight: 750; letter-spacing: .06em; line-height: 1.4; text-transform: uppercase; }
.badge--active { border-color: rgba(196, 119, 45, .25); background: rgba(196, 119, 45, .08); color: var(--primary-light); }
.badge--complete { border-color: rgba(103, 165, 117, .25); background: rgba(103, 165, 117, .07); color: #b9d5bf; }
.badge--future { border-style: dashed; color: var(--text-muted); }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-copy { display: grid; gap: 20px; color: var(--text-secondary); }
.quality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.quality-card { min-height: 180px; padding: 24px; border-radius: var(--radius-md); }
.quality-card > span { color: var(--primary); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .68rem; font-weight: 750; }
.quality-card h3 { margin: 27px 0 8px; font-size: 1.06rem; }
.quality-card p { color: var(--text-secondary); font-size: .86rem; line-height: 1.65; }

/* Why IT */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 330px; padding: 30px; border-radius: var(--radius-lg); overflow: hidden; }
.feature-card::after { position: absolute; right: -80px; bottom: -100px; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle, rgba(196, 119, 45, .07), transparent 68%); content: ""; }
.feature-card__icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 54px; border: 1px solid var(--border-bright); border-radius: 14px; background: var(--primary-soft); color: var(--primary); }
.feature-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 31px; right: 30px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .72rem; }
.feature-card h3 { margin-bottom: 13px; font-size: 1.25rem; }
.feature-card p { color: var(--text-secondary); font-size: .9rem; line-height: 1.75; }

/* Bot Project */
.game-card { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-xl); background: #181715; box-shadow: var(--shadow); }
.game-card__art { position: relative; display: grid; min-height: 620px; place-content: center; overflow: hidden; border-right: 1px solid var(--border); background: radial-gradient(circle at 50% 44%, rgba(196, 119, 45, .12), transparent 38%), #121210; }
.game-card__art::before, .game-card__art::after { position: absolute; width: 240px; height: 240px; border: 1px solid rgba(196, 119, 45, .15); border-radius: 50%; content: ""; }
.game-card__art::after { width: 330px; height: 330px; }
.game-card__art > svg { position: relative; z-index: 2; width: 112px; height: 112px; fill: none; stroke: var(--primary); stroke-width: 1; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .24)); }
.game-card__art > span { position: relative; z-index: 2; margin-top: 24px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .66rem; font-weight: 750; letter-spacing: .22em; line-height: 1.5; text-align: center; }
.pixel-grid { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(196, 119, 45, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(196, 119, 45, .09) 1px, transparent 1px); background-size: 24px 24px; mask-image: radial-gradient(circle, #000, transparent 72%); }
.bot-nodes { position: absolute; z-index: 1; width: 250px; height: 250px; border: 1px solid rgba(196, 119, 45, .15); border-radius: 50%; }
.bot-nodes::before, .bot-nodes::after { position: absolute; background: rgba(196, 119, 45, .2); content: ""; }
.bot-nodes::before { top: 50%; right: -34px; left: -34px; height: 1px; }
.bot-nodes::after { top: -34px; bottom: -34px; left: 50%; width: 1px; }
.bot-nodes i { position: absolute; z-index: 1; width: 9px; height: 9px; border: 2px solid var(--primary); border-radius: 50%; background: var(--bg-secondary); box-shadow: 0 0 0 5px rgba(196, 119, 45, .07); }
.bot-nodes i:nth-child(1) { top: 50%; left: -38px; }.bot-nodes i:nth-child(2) { top: 50%; right: -38px; }.bot-nodes i:nth-child(3) { top: -38px; left: 50%; }.bot-nodes i:nth-child(4) { bottom: -38px; left: 50%; }
.game-card__content { padding: 55px 60px; }
.game-card__content .subtitle { margin: 13px 0 24px; color: #d7d1c8; }
.game-card__content > p:not(.eyebrow, .subtitle, .honesty-note) { margin-top: 14px; color: var(--text-secondary); font-size: .92rem; }
.honesty-note { display: flex; gap: 12px; margin-top: 25px; padding: 16px; border: 1px solid rgba(196, 119, 45, .25); border-radius: 12px; background: rgba(196, 119, 45, .08); color: var(--text-secondary); font-size: .84rem; }
.honesty-note svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.honesty-note strong { color: var(--text); }
.learning-targets { margin-top: 27px; padding-top: 24px; border-top: 1px solid var(--border); }
.learning-targets > div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.learning-targets h3 { font-size: .94rem; }
.learning-targets > div span { color: var(--primary); font-size: .63rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }

/* Project Pair */
.project-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.project-panel { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-xl); background: #181715; box-shadow: var(--shadow); }
.project-panel__art { position: relative; display: grid; min-height: 265px; place-content: center; overflow: hidden; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 50% 44%, rgba(196, 119, 45, .12), transparent 38%), #121210; }
.project-panel__art::before, .project-panel__art::after { position: absolute; width: 170px; height: 170px; border: 1px solid rgba(196, 119, 45, .15); border-radius: 50%; content: ""; }.project-panel__art::after { width: 235px; height: 235px; }
.project-panel__art--bot > svg { position: relative; z-index: 2; width: 78px; height: 78px; fill: none; stroke: var(--primary); stroke-width: 1; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .24)); }
.project-panel__art--bot > span, .project-panel__art--jarvis > span { position: relative; z-index: 2; margin-top: 17px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .58rem; font-weight: 750; letter-spacing: .16em; line-height: 1.5; text-align: center; }
.project-panel__content { padding: 35px; }.project-panel__content .subtitle { margin: 13px 0 22px; color: #d7d1c8; }.project-panel__content > p:not(.eyebrow, .subtitle, .honesty-note) { margin-top: 14px; color: var(--text-secondary); font-size: .88rem; }.project-panel__content .honesty-note { margin-top: 23px; }.project-panel__content .learning-targets { margin-top: 24px; }
.project-panel--jarvis { border-color: rgba(196, 119, 45, .2); background: linear-gradient(120deg, rgba(196, 119, 45, .035), transparent 42%), #181715; }.project-panel__art--jarvis { background: radial-gradient(circle at 50% 44%, rgba(82, 199, 216, .08), transparent 40%), #111214; }.project-panel__art--jarvis::before, .project-panel__art--jarvis::after { border-color: rgba(82, 199, 216, .12); }.project-panel__art--jarvis .pixel-grid { background-image: linear-gradient(rgba(82, 199, 216, .075) 1px, transparent 1px), linear-gradient(90deg, rgba(82, 199, 216, .075) 1px, transparent 1px); }
.jarvis-card-preview { position: relative; z-index: 2; display: grid; width: min(78%, 340px); gap: 10px; padding: 13px; border: 1px solid rgba(82, 199, 216, .17); border-radius: 13px; background: #15171a; box-shadow: 0 20px 45px rgba(0, 0, 0, .32); }.jarvis-card-preview__bar { display: flex; align-items: center; gap: 5px; padding-bottom: 9px; border-bottom: 1px solid rgba(255, 255, 255, .06); }.jarvis-card-preview__bar i { width: 5px; height: 5px; border-radius: 50%; background: #5e636a; }.jarvis-card-preview__bar i:nth-child(2) { background: #8262c9; }.jarvis-card-preview__bar i:nth-child(3) { background: #52c7d8; }.jarvis-card-preview__bar b { margin-left: auto; color: #8c949e; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .48rem; letter-spacing: .08em; }
.jarvis-card-preview__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }.jarvis-card-preview__grid span { display: grid; gap: 3px; padding: 9px; border: 1px solid rgba(255, 255, 255, .055); border-radius: 7px; background: #1b1e22; }.jarvis-card-preview__grid small { color: #7f8790; font-size: .5rem; text-transform: uppercase; }.jarvis-card-preview__grid strong { color: #52c7d8; font-size: .72rem; }.jarvis-card-preview > p { color: var(--primary-light); font-size: .57rem; text-align: center; }.honesty-note--development svg { stroke-width: 1.7; }

/* Skills */
.skills-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.skills-panel, .strengths-panel { padding: 31px; border-radius: var(--radius-lg); }
.skills-panel > h3, .strengths-panel > h3 { margin-bottom: 24px; font-size: 1.15rem; }
.skill-list { display: grid; }
.skill { display: grid; grid-template-columns: minmax(170px, .9fr) 1.1fr; align-items: center; gap: 22px; padding: 14px 0; border-top: 1px solid var(--border); }
.skill > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.skill strong { font-size: .9rem; }.skill span { color: var(--text-secondary); font-size: .68rem; }
.level { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.level i { height: 6px; border-radius: 6px; background: #35312c; }
.level--1 i:nth-child(1), .level--2 i:nth-child(-n+2), .level--3 i:nth-child(-n+3) { background: var(--primary); }
.panel-note { margin-top: 19px; padding: 13px 14px; border-radius: 10px; background: var(--bg-secondary); color: var(--text-secondary); font-size: .74rem; }
.strength-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.strength-list article { display: flex; gap: 13px; min-height: 104px; padding: 16px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, .025); }
.strength-list article > span { color: var(--primary); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .63rem; }
.strength-list h4 { margin-bottom: 4px; font-size: .84rem; }
.strength-list p { color: var(--text-secondary); font-size: .72rem; line-height: 1.55; }

/* Skill overview */
.skill-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.skill-category { padding: 27px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(196, 119, 45, .055), transparent 45%), var(--surface); box-shadow: var(--shadow); }
.skill-category .eyebrow { margin-bottom: 9px; font-size: .65rem; }
.skill-category h3 { margin-bottom: 20px; font-size: 1.08rem; }
.skill-chip-list { display: grid; gap: 9px; list-style: none; }
.skill-chip-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 10px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 9px; background: rgba(0, 0, 0, .14); font-size: .81rem; font-weight: 700; }
.skill-chip-list span { color: var(--primary-light); font-size: .64rem; font-weight: 650; text-align: right; }
.skill-overview { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); gap: 36px; padding: 31px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(196, 119, 45, .065), transparent 42%), var(--surface); box-shadow: var(--shadow); }
.skill-overview__intro h3 { margin-bottom: 12px; font-size: 1.25rem; }.skill-overview__intro > p:last-child { color: var(--text-secondary); font-size: .84rem; }
.skill-overview__groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }.skill-overview__groups h4 { margin-bottom: 12px; color: var(--text); font-size: .84rem; }.skill-overview__groups .skill-chip-list { gap: 7px; }.skill-overview__groups .skill-chip-list li { display: block; padding: 9px; font-size: .72rem; }.skill-overview__groups .skill-chip-list span { display: block; margin-top: 3px; font-size: .59rem; text-align: left; }

/* Timeline */
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; list-style: none; }
.timeline--six { grid-template-columns: repeat(6, 1fr); }
.timeline--seven { grid-template-columns: repeat(7, 1fr); }
.timeline--ten { grid-template-columns: repeat(5, 1fr); row-gap: 26px; }
.timeline::before { position: absolute; top: 51px; right: 8%; left: 8%; height: 1px; background: rgba(255, 255, 255, .08); content: ""; }
.timeline li { position: relative; }
.timeline__number { display: block; margin-bottom: 19px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .69rem; }
.timeline__dot { position: relative; z-index: 2; width: 13px; height: 13px; margin: 0 0 23px 9px; border: 3px solid var(--bg); border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 1px rgba(196, 119, 45, .45); }
.timeline li:nth-last-child(1) .timeline__dot { background: var(--primary); }
.timeline__card { min-height: 190px; padding: 19px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface-soft); }
.timeline__card h3 { margin: 18px 0 9px; font-size: 1rem; }
.timeline__card p { color: var(--text-secondary); font-size: .78rem; line-height: 1.6; }

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { overflow: hidden; border-radius: var(--radius-lg); }
.project-card--featured { grid-column: span 3; display: grid; grid-template-columns: .9fr 1.1fr; }
.project-card--featured .project-preview { height: 100%; min-height: 350px; border-right: 1px solid var(--border); border-bottom: 0; }
.project-card--featured .project-card__body { min-height: 350px; padding: clamp(28px, 4vw, 46px); }
.project-card--jarvis { border-color: rgba(196, 119, 45, .24); background: linear-gradient(115deg, rgba(196, 119, 45, .04), transparent 45%), var(--surface); }
.project-card--last-letter { border-color: rgba(125, 103, 196, .26); background: linear-gradient(115deg, rgba(125, 103, 196, .08), transparent 45%), var(--surface); }
.project-preview { position: relative; display: grid; height: 218px; place-items: center; overflow: hidden; border-bottom: 1px solid var(--border); background-color: #11110f; background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px); background-size: 25px 25px; }
.browser-frame { position: relative; width: 70%; height: 72%; border: 1px solid rgba(95, 75, 55, .22); border-radius: 10px; background: #2b2926; box-shadow: 0 18px 40px rgba(55, 42, 28, .14); }
.browser-frame::before { position: absolute; top: 22px; right: 0; left: 0; height: 1px; background: var(--border); content: ""; }
.browser-frame span, .browser-frame i { position: absolute; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: #615a52; }
.browser-frame span { left: 10px; }.browser-frame i:nth-child(2) { left: 20px; }.browser-frame i:nth-child(3) { left: 30px; background: var(--primary); }
.browser-frame b { position: absolute; inset: 22px 0 0; display: grid; place-items: center; color: var(--primary-light); font-size: 2.2rem; letter-spacing: -.08em; }
.preview--code span { color: var(--primary); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 3rem; font-weight: 800; }
.preview--code i { position: absolute; height: 3px; border-radius: 4px; background: rgba(196, 119, 45, .25); }
.preview--code i:nth-child(2) { top: 55px; left: 20%; width: 32%; }.preview--code i:nth-child(3) { right: 16%; bottom: 44px; width: 44%; }.preview--code i:nth-child(4) { right: 22%; top: 77px; width: 22%; }
.preview--bubble-pop svg { width: min(70%, 200px); height: 140px; fill: var(--primary-soft); stroke: var(--primary-light); stroke-width: 1.5; }
.preview--bubble-pop path { fill: none; stroke-linecap: round; }
.preview--bot svg { width: 88px; height: 88px; fill: none; stroke: var(--primary); stroke-width: 1; filter: drop-shadow(0 8px 18px rgba(143, 87, 44, .14)); }
.preview--bot span { position: absolute; right: 20px; bottom: 18px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .65rem; font-weight: 750; letter-spacing: .14em; }
.preview--jarvis { background-color: #101112; background-image: linear-gradient(rgba(82, 199, 216, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(82, 199, 216, .035) 1px, transparent 1px); }
.preview--last-letter { background-color: #111015; background-image: radial-gradient(circle at 50% 44%, rgba(130, 98, 201, .15), transparent 35%), linear-gradient(rgba(130, 98, 201, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(130, 98, 201, .045) 1px, transparent 1px); }
.preview-dashboard { display: grid; width: min(76%, 330px); grid-template-columns: repeat(2, 1fr); gap: 9px; padding: 13px; border: 1px solid rgba(82, 199, 216, .16); border-radius: 13px; background: #15171a; box-shadow: 0 22px 50px rgba(0, 0, 0, .35); transform: perspective(800px) rotateY(5deg) rotateX(2deg); }
.preview-dashboard__bar { display: flex; grid-column: span 2; align-items: center; gap: 5px; padding-bottom: 9px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.preview-dashboard__bar i { width: 5px; height: 5px; border-radius: 50%; background: #5e636a; }
.preview-dashboard__bar i:nth-child(2) { background: #8262c9; }.preview-dashboard__bar i:nth-child(3) { background: #52c7d8; }
.preview-dashboard__bar b { margin-left: auto; color: #8c949e; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .48rem; letter-spacing: .08em; }
.preview-dashboard__tile { display: grid; gap: 4px; padding: 10px; border: 1px solid rgba(255, 255, 255, .055); border-radius: 8px; background: #1b1e22; }
.preview-dashboard__tile--wide { grid-column: span 2; }
.preview-dashboard__tile small { color: #7f8790; font-size: .5rem; text-transform: uppercase; }.preview-dashboard__tile strong { color: #52c7d8; font-size: .78rem; }
.preview-label { position: absolute; right: 20px; bottom: 18px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .65rem; font-weight: 750; letter-spacing: .14em; }
.word-table-preview { position: relative; width: min(76%, 330px); height: 148px; border: 1px solid rgba(130, 98, 201, .2); border-radius: 13px; background: linear-gradient(145deg, rgba(34, 30, 47, .96), rgba(20, 19, 25, .96)); box-shadow: 0 22px 50px rgba(0, 0, 0, .35); transform: perspective(800px) rotateX(5deg) rotateY(-5deg); }
.word-table-preview__bar { position: absolute; top: 0; right: 12px; left: 12px; display: flex; align-items: center; gap: 5px; height: 31px; border-bottom: 1px solid rgba(255, 255, 255, .07); }.word-table-preview__bar i { width: 5px; height: 5px; border-radius: 50%; background: #5e636a; }.word-table-preview__bar i:nth-child(2) { background: #8262c9; }.word-table-preview__bar i:nth-child(3) { background: #d6a557; }.word-table-preview__bar b { margin-left: auto; color: #a9a0bb; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .45rem; letter-spacing: .08em; }
.word-table-preview__seat { position: absolute; display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(214, 165, 87, .35); border-radius: 50%; background: #28222d; color: #e5c88f; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .65rem; font-weight: 750; }.word-table-preview__seat--one { bottom: 15px; left: 18%; }.word-table-preview__seat--two { top: 47px; right: 15%; }.word-table-preview__seat--three { right: 19%; bottom: 13px; }
.word-table-preview__table { position: absolute; top: 51px; left: 50%; display: grid; width: 86px; height: 68px; place-content: center; border: 1px solid rgba(130, 98, 201, .35); border-radius: 50%; background: radial-gradient(circle, rgba(130, 98, 201, .22), rgba(25, 22, 31, .96) 70%); color: #e2dced; text-align: center; transform: translateX(-50%); }.word-table-preview__table small { color: #b7aecd; font-size: .37rem; letter-spacing: .06em; }.word-table-preview__table strong { color: #e5c88f; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 1.25rem; line-height: 1; }.word-table-preview__table em { color: #90879f; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .4rem; font-style: normal; }
.project-card__body { display: flex; min-height: 320px; flex-direction: column; align-items: flex-start; padding: 25px; }
.project-card__body h3 { margin: 17px 0 10px; font-size: 1.18rem; }
.project-card__body p { margin-bottom: 20px; color: var(--text-secondary); font-size: .84rem; }
.project-card__body .tag-list { margin-top: auto; }
.project-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }

/* Project hub */
.section-heading h2 span { color: var(--primary); }
.project-filter { display: flex; flex-wrap: wrap; gap: 10px; margin: -18px 0 25px; }
.project-filter__button { padding: 8px 15px; border: 1px solid var(--border); border-radius: 9px; background: rgba(255, 255, 255, .02); color: var(--text-secondary); font-size: .75rem; font-weight: 700; cursor: pointer; transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition); }
.project-filter__button:hover { border-color: var(--border-bright); color: var(--text); transform: translateY(-1px); }
.project-filter__button.is-active { border-color: rgba(223, 143, 67, .55); background: linear-gradient(135deg, var(--primary), #a85b1d); color: #fff9f0; box-shadow: 0 7px 18px rgba(196, 119, 45, .18); }
.project-hub { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.project-hub__card { display: flex; min-width: 0; flex-direction: column; }
.project-hub__card[hidden] { display: none; }
.project-repository-links { margin: 18px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.project-repository-links a { color: var(--orange); text-underline-offset: 3px; }
.project-repository-links a:hover { color: var(--orange-light); }
.project-hub__card .project-card__body { flex: 1; min-height: 0; padding: 23px; }
.project-card__subtitle { margin-top: -3px !important; color: var(--primary-light) !important; font-size: .78rem !important; font-weight: 700; }
.project-media { position: relative; display: grid; height: 210px; place-items: center; overflow: hidden; border-bottom: 1px solid var(--border); background-color: #11110f; isolation: isolate; }
.project-media__image { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-media:has(.project-media__image) { background: #10100f; }.project-media:has(.project-media__image)::before { display: none; }.project-media:has(.project-media__image)::after { position: absolute; z-index: 0; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 9, .08), rgba(10, 10, 9, .48)); content: ""; pointer-events: none; }.project-media:has(.project-media__image) > :not(.project-media__image) { z-index: 1; }
.project-media::before { position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px); background-size: 24px 24px; content: ""; }
.project-media__label { position: absolute; z-index: 2; top: 15px; left: 16px; color: #e9b166; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.project-media--jarvis { background: radial-gradient(circle at 62% 55%, rgba(45, 167, 208, .18), transparent 42%), #0d1114; }
.project-media--bot { background: radial-gradient(circle at 50% 44%, rgba(196, 119, 45, .2), transparent 28%), linear-gradient(145deg, #15110d, #111211); }.project-media--bot svg { width: 88px; height: 88px; fill: none; stroke: var(--primary-light); stroke-width: 1.2; filter: drop-shadow(0 0 18px rgba(223, 143, 67, .23)); }.project-media--bot b { position: absolute; right: 16px; bottom: 14px; color: #cfbc9f; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .57rem; letter-spacing: .11em; }
.project-media__screen { display: grid; width: 70%; grid-template-columns: repeat(2, 1fr); gap: 7px; padding: 13px; border: 1px solid rgba(82, 199, 216, .22); border-radius: 11px; background: rgba(16, 22, 28, .92); box-shadow: 0 18px 32px rgba(0, 0, 0, .32); transform: perspective(700px) rotateY(-5deg) rotateX(3deg); }
.project-media__screen i { width: 5px; height: 5px; border-radius: 50%; background: #59c4d8; }.project-media__screen i:nth-child(2) { background: #a775d6; }.project-media__screen i:nth-child(3) { background: #e0a051; }.project-media__screen b { padding: 9px; border-radius: 7px; background: #19242c; color: #9bdde7; font-size: .62rem; }.project-media__screen strong { grid-column: span 2; padding: 7px; border-radius: 6px; background: rgba(103, 165, 117, .1); color: #82d595; font-size: .6rem; letter-spacing: .1em; text-align: center; }
.project-media--last-letter { background: radial-gradient(circle at 50% 55%, rgba(193, 78, 59, .25), transparent 25%), radial-gradient(circle at 50% 48%, rgba(101, 58, 131, .38), transparent 56%), #160f1b; }.project-media__table { display: grid; width: 112px; height: 112px; place-content: center; border: 1px solid rgba(230, 151, 72, .55); border-radius: 50%; background: radial-gradient(circle, rgba(229, 98, 51, .28), rgba(26, 16, 30, .84) 67%); box-shadow: 0 0 35px rgba(226, 103, 56, .23); text-align: center; }.project-media__table b { color: #ffc365; font-size: 2.7rem; line-height: .8; }.project-media__table small { color: #dfb6aa; font-size: .48rem; font-weight: 750; letter-spacing: .12em; }
.project-media--bubble { background: radial-gradient(circle at 78% 23%, rgba(106, 192, 255, .65), transparent 17%), linear-gradient(135deg, #1479b9, #4549b6 55%, #b94b9e); }.project-media--bubble i { position: absolute; border: 2px solid rgba(232, 249, 255, .77); border-radius: 50%; background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .8), rgba(112, 202, 255, .2) 20%, rgba(255, 255, 255, .06) 62%); box-shadow: inset 8px 8px 12px rgba(255, 255, 255, .12); }.project-media--bubble i:nth-of-type(1) { width: 120px; height: 120px; right: -14px; bottom: -35px; }.project-media--bubble i:nth-of-type(2) { width: 65px; height: 65px; top: 41px; left: 38px; }.project-media--bubble i:nth-of-type(3) { width: 35px; height: 35px; right: 44px; bottom: 30px; }.project-media--bubble b { z-index: 1; color: #ffe45e; font-size: 3.1rem; text-shadow: 0 3px 0 #b74589; }
.project-media--assistant { background: radial-gradient(circle at 72% 21%, rgba(107, 155, 255, .2), transparent 25%), linear-gradient(145deg, #0d1930, #181524); }.project-media__assistant-lines { display: grid; width: 72%; gap: 10px; padding: 19px; border: 1px solid rgba(135, 160, 239, .18); border-radius: 12px; background: rgba(11, 24, 47, .8); }.project-media__assistant-lines i { display: block; height: 12px; border-radius: 6px; background: linear-gradient(90deg, #6d90f3, rgba(109, 144, 243, .14)); }.project-media__assistant-lines i:nth-child(2) { width: 78%; }.project-media__assistant-lines i:nth-child(3) { width: 52%; }
.project-media--java { align-content: center; background: radial-gradient(circle at 79% 28%, rgba(217, 130, 57, .19), transparent 31%), #171514; }.project-media--java pre { width: 77%; padding: 19px; border: 1px solid rgba(218, 184, 145, .2); border-radius: 10px; background: #101011; color: #e8c18f; font: .64rem/1.8 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: normal; }
.project-media--portfolio { justify-items: start; padding: 30px; background: radial-gradient(circle at 94% 49%, rgba(204, 121, 39, .38), transparent 16%), radial-gradient(circle at 92% 58%, rgba(204, 121, 39, .13), transparent 41%), #17120e; }.project-media--portfolio strong { color: #f7e8db; font-size: 1.6rem; line-height: 1.25; letter-spacing: -.05em; }
.project-details { width: 100%; margin-top: 20px; }.project-details summary { display: flex; width: fit-content; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; background: var(--primary-button); color: #fffaf4; font-size: .74rem; font-weight: 750; cursor: pointer; list-style: none; }.project-details summary::-webkit-details-marker { display: none; }.project-details summary svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--transition); }.project-details[open] summary svg { transform: rotate(90deg); }.project-details > p { margin: 13px 0 0 !important; padding-top: 13px; border-top: 1px solid var(--border); font-size: .77rem !important; }

/* Jarvis Dashboard */
.jarvis-section { overflow: hidden; }
.jarvis-section::before { position: absolute; top: 4%; right: -260px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(82, 199, 216, .035), transparent 68%); content: ""; pointer-events: none; }
.jarvis-intro { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: clamp(42px, 6vw, 84px); }
.jarvis-copy h2 { margin: 17px 0 12px; }
.jarvis-copy > p:not(.eyebrow, .subtitle) { margin-top: 17px; color: var(--text-secondary); font-size: .92rem; }
.jarvis-copy .subtitle { margin-bottom: 23px; }
.jarvis-tech { margin-top: 28px; }
.jarvis-mockup { min-width: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--radius-xl); background: #101112; box-shadow: 0 24px 60px rgba(0, 0, 0, .34); }
.jarvis-mockup figcaption { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 19px; border-bottom: 1px solid rgba(255, 255, 255, .07); color: #d7dce2; font-size: .76rem; font-weight: 700; }
.jarvis-mockup figcaption small { color: #858c94; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .61rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.mockup-window { padding: 18px; background-image: linear-gradient(rgba(82, 199, 216, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(82, 199, 216, .03) 1px, transparent 1px); background-size: 24px 24px; }
.mockup-window__bar { display: flex; align-items: center; gap: 6px; margin-bottom: 13px; padding: 10px 12px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 9px; background: #16181c; }
.mockup-window__bar span { width: 6px; height: 6px; border-radius: 50%; background: #555b64; }.mockup-window__bar span:nth-child(2) { background: #8262c9; }.mockup-window__bar span:nth-child(3) { background: #52c7d8; }
.mockup-window__bar b { margin-left: 5px; color: #aeb5bd; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .58rem; letter-spacing: .08em; }.mockup-window__bar i { margin-left: auto; color: #6fa77b; font-size: .52rem; font-style: normal; font-weight: 750; letter-spacing: .08em; }
.mockup-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mockup-card { display: flex; min-width: 0; min-height: 116px; flex-direction: column; justify-content: space-between; padding: 15px; border: 1px solid rgba(255, 255, 255, .065); border-radius: 11px; background: rgba(26, 29, 34, .96); }
.mockup-card--chart { grid-column: span 2; min-height: 145px; }
.mockup-card--chart > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.mockup-card small { color: #818992; font-size: .61rem; letter-spacing: .05em; text-transform: uppercase; }.mockup-card strong { color: #e5e9ed; font-size: 1.08rem; }.mockup-card strong span { color: #52c7d8; }.mockup-card > span:not(.mockup-meter) { color: #747c85; font-size: .6rem; }
.mock-chart { display: flex; height: 65px; align-items: end; gap: 7px; padding-top: 12px; border-bottom: 1px solid rgba(82, 199, 216, .16); }
.mock-chart i { width: 100%; border-radius: 3px 3px 0 0; background: linear-gradient(#52c7d8, rgba(82, 199, 216, .16)); }.mock-chart i:nth-child(1) { height: 32%; }.mock-chart i:nth-child(2) { height: 46%; }.mock-chart i:nth-child(3) { height: 38%; }.mock-chart i:nth-child(4) { height: 68%; }.mock-chart i:nth-child(5) { height: 55%; }.mock-chart i:nth-child(6) { height: 72%; }.mock-chart i:nth-child(7) { height: 48%; }.mock-chart i:nth-child(8) { height: 62%; }
.mockup-meter { height: 5px; overflow: hidden; border-radius: 5px; background: #30343a; }.mockup-meter i { display: block; width: 48%; height: 100%; border-radius: inherit; background: #8262c9; }
.mockup-card--offline { grid-column: span 2; min-height: 94px; border-color: rgba(196, 119, 45, .16); }.mockup-card--offline strong { color: var(--primary-light); }
.jarvis-status { display: grid; grid-template-columns: .5fr 1.5fr; align-items: center; gap: 36px; margin-top: 72px; padding: 27px 30px; border: 1px solid rgba(196, 119, 45, .25); border-radius: var(--radius-lg); background: rgba(196, 119, 45, .07); }
.jarvis-status > div { display: flex; align-items: center; gap: 15px; }.jarvis-status h3 { font-size: 1rem; }.jarvis-status p { color: var(--text-secondary); font-size: .86rem; }
.jarvis-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.jarvis-feature { min-height: 205px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.jarvis-feature > span { color: var(--primary); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .66rem; font-weight: 750; }.jarvis-feature h3 { margin: 29px 0 9px; font-size: 1rem; }.jarvis-feature p { color: var(--text-secondary); font-size: .78rem; line-height: 1.65; }
.jarvis-details { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 22px; }
.architecture-card, .security-card, .jarvis-learning { padding: 31px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.architecture-card h3, .security-card h3, .jarvis-learning h3 { font-size: 1.15rem; }.security-card > p:last-child { margin-top: 18px; color: var(--text-secondary); font-size: .84rem; }
.security-card code { padding: 2px 6px; border-radius: 5px; background: #11110f; color: var(--primary-light); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.architecture-flow { display: flex; align-items: center; gap: 9px; margin-top: 23px; }
.architecture-flow span, .architecture-planned span { padding: 8px 10px; border: 1px solid var(--border); border-radius: 8px; background: #121210; color: #d8d2ca; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .68rem; font-weight: 650; text-align: center; }.architecture-flow i, .architecture-planned i { color: var(--primary); font-style: normal; }
.architecture-planned { display: flex; align-items: center; gap: 9px; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--border); }.architecture-planned small { margin-left: auto; color: var(--primary-light); font-size: .61rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.jarvis-learning { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 45px; margin-top: 22px; }.jarvis-learning .eyebrow { margin-bottom: 8px; }

/* Experience */
.experience { padding-top: 70px; padding-bottom: 70px; }
.experience-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding: 42px; border-radius: var(--radius-lg); }
.experience-card h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.experience-card > div:last-child { display: grid; gap: 13px; color: var(--text-secondary); font-size: .9rem; }
.experience-card .tag-list { margin-top: 7px; }

/* Training */
.training-card { position: relative; overflow: hidden; padding: clamp(38px, 6vw, 72px); border: 1px solid transparent; border-radius: var(--radius-xl); background: linear-gradient(#191816, #191816) padding-box, linear-gradient(135deg, rgba(196, 119, 45, .42), rgba(223, 143, 67, .15), rgba(255, 255, 255, .07)) border-box; box-shadow: var(--shadow); }
.training-card::after { position: absolute; top: -220px; right: -180px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(196, 119, 45, .085), transparent 67%); content: ""; pointer-events: none; }
.training-card > * { position: relative; z-index: 1; }
.training-card__status { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 45px; padding: 8px 12px; border: 1px solid rgba(103, 165, 117, .25); border-radius: 9px; background: rgba(103, 165, 117, .07); color: #b9d5bf; font-size: .73rem; font-weight: 650; }
.training-copy { display: grid; max-width: 810px; gap: 11px; margin: 29px 0; color: var(--text-secondary); font-size: .94rem; }
.training-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.training-meta span { padding: 6px 10px; border-radius: 8px; background: var(--surface-soft); color: #d7d1c8; font-size: .72rem; font-weight: 650; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 90px; }
.contact-copy > p:not(.eyebrow) { max-width: 590px; margin: 24px 0 30px; color: var(--text-secondary); }
.contact-card { display: grid; padding: 13px 27px; border-radius: var(--radius-lg); font-style: normal; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: 0; }
.contact-item > span:first-child { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; border-radius: 10px; background: var(--primary-soft); color: var(--primary); }
.contact-item svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-item small { display: block; margin-bottom: 2px; color: var(--text-secondary); font-size: .65rem; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }
.contact-item a, .contact-item strong, .placeholder-text { color: var(--text); font-size: .86rem; font-style: normal; font-weight: 650; overflow-wrap: anywhere; }
.contact-item a:hover { color: var(--primary); }
.placeholder-text { color: var(--text-muted); }

/* Footer */
.site-footer { padding: 30px 0; border-top: 1px solid var(--border); background: var(--sidebar-bg); }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer .container > div { display: flex; align-items: center; gap: 13px; }
.site-footer .brand__mark { width: 34px; height: 34px; font-size: .75rem; }
.site-footer p { color: var(--text-secondary); font-size: .72rem; line-height: 1.5; }
.site-footer strong { color: var(--text); font-size: .8rem; }
.site-footer nav { display: flex; gap: 20px; color: var(--text-secondary); font-size: .75rem; }
.site-footer nav a:hover { color: var(--primary); }
.noscript { position: fixed; z-index: 999; right: 12px; bottom: 12px; left: calc(var(--sidebar-width) + 12px); padding: 10px; border: 1px solid var(--border-bright); border-radius: 9px; background: var(--surface); color: var(--text); font-size: .75rem; text-align: center; }

/* Legal pages */
.legal-page { min-height: 100vh; background-image: radial-gradient(circle at 75% 0, rgba(196, 119, 45, .07), transparent 35%); }
.legal-page .site-footer { margin-left: 0; }
.legal-header { padding: 23px 0; border-bottom: 1px solid var(--border); }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; }
.legal-header .brand { margin: 0; }
.legal-back { color: var(--text-secondary); font-size: .85rem; font-weight: 650; }
.legal-back:hover { color: var(--primary); }
.legal-main { padding: 80px 0 110px; }
.legal-content { max-width: 820px; }
.legal-content h1 { margin-bottom: 16px; font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -.055em; line-height: 1; }
.legal-intro { margin-bottom: 42px; color: var(--text-secondary); font-size: 1.04rem; }
.legal-section { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--border); }
.legal-section h2 { margin-bottom: 12px; font-size: 1.25rem; }
.legal-section p, .legal-section li { color: var(--text-secondary); font-size: .91rem; }
.legal-section ul { padding-left: 20px; }
.placeholder-box { margin-top: 15px; padding: 18px; border: 1px dashed var(--border-accent); border-radius: 11px; background: rgba(196, 119, 45, .06); color: var(--primary-light); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .84rem; white-space: pre-line; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --sidebar-width: 220px; }
  .container { width: min(calc(100% - 54px), var(--content-max)); }
  .hero__grid { grid-template-columns: 1fr .88fr; gap: 42px; }
  .hero h1 { font-size: clamp(3.8rem, 7vw, 5.8rem); }
  .location-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr); gap: 22px; }
  .location-info-card { padding: 34px; }
  .game-card__content { padding: 45px 40px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-hub { grid-template-columns: repeat(2, 1fr); }
  .project-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .project-card--featured .project-preview { height: 100%; border-right: 1px solid var(--border); border-bottom: 0; }
  .timeline--six { grid-template-columns: repeat(3, 1fr); }
  .timeline--seven { grid-template-columns: repeat(3, 1fr); }
  .timeline--ten { grid-template-columns: repeat(3, 1fr); }
  .timeline--six::before, .timeline--seven::before { display: none; }
}

@media (max-width: 960px) {
  .sidebar { display: none; }
  .page-shell, .site-footer { margin-left: 0; }
  .container { width: min(calc(100% - 48px), var(--content-max)); }
  .mobile-header { position: fixed; z-index: 200; inset: 0 0 auto; display: flex; height: 70px; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid var(--border-dark); background: rgba(11, 11, 10, .96); color: var(--sidebar-text); backdrop-filter: blur(16px); }
  .mobile-brand { display: flex; align-items: center; gap: 11px; color: var(--sidebar-text); font-size: .9rem; }
  .mobile-brand .brand__mark { width: 36px; height: 36px; border-radius: 9px; color: var(--primary-light); font-size: .78rem; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 42px; height: 42px; padding: 10px; place-content: center; gap: 5px; border: 1px solid var(--border-dark); border-radius: 10px; background: rgba(255, 255, 255, .035); cursor: pointer; }
  .menu-toggle span { display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--sidebar-text); transition: transform var(--transition), opacity var(--transition); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 69px; right: 0; left: 0; display: grid; max-height: 0; gap: 3px; overflow: hidden; padding: 0 24px; border-bottom: 1px solid transparent; background: rgba(11, 11, 10, .99); opacity: 0; visibility: hidden; transition: max-height 350ms ease, padding 350ms ease, opacity var(--transition), visibility var(--transition); }
  .mobile-menu.is-open { max-height: 520px; padding-block: 17px 23px; border-color: var(--border-dark); opacity: 1; visibility: visible; }
  .mobile-menu a { padding: 10px 12px; border-radius: 8px; color: var(--sidebar-muted); font-size: .86rem; font-weight: 650; }
  .mobile-menu a:hover { background: rgba(255, 255, 255, .04); color: var(--sidebar-text); }
  .mobile-menu a.active { background: var(--primary-soft); color: var(--primary-light); }
  .section { padding: 88px 0; scroll-margin-top: 68px; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(3.5rem, 8vw, 5.6rem); }
  .hero-visual { min-height: 410px; }
  .overview-wrap { margin-top: 50px; }
  .location-section { margin-top: -40px; padding-bottom: 88px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:last-child { grid-column: span 2; }
  .game-card { grid-template-columns: .65fr 1.35fr; }
  .game-card__art { min-height: 690px; }
  .project-panel__content { padding: 29px; }
  .skills-layout { grid-template-columns: 1fr; }
  .skill-categories { grid-template-columns: 1fr; }
  .skill-overview { grid-template-columns: 1fr; gap: 24px; }
  .skill-overview__groups { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 12px; bottom: 20px; left: 6px; width: 1px; height: auto; }
  .timeline li { display: grid; grid-template-columns: 42px 1fr; padding-bottom: 18px; }
  .timeline__number { grid-column: 2; margin: 0 0 7px; }
  .timeline__dot { position: absolute; top: 8px; left: 0; margin: 0; }
  .timeline__card { grid-column: 2; min-height: auto; }
  .timeline--six, .timeline--seven { grid-template-columns: 1fr; }
  .timeline--ten { grid-template-columns: 1fr; }
  .jarvis-intro { grid-template-columns: 1fr 1fr; gap: 32px; }
  .jarvis-features { grid-template-columns: repeat(2, 1fr); }
  .jarvis-details { grid-template-columns: 1fr; }
  .architecture-flow { flex-wrap: wrap; }
  .contact-grid { gap: 50px; }
  .noscript { left: 12px; }
}

@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-image-card { min-height: 400px; }
  .location-info-card h2 br { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 34px), var(--content-max)); }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 br { display: none; }
  .hero { padding-top: 125px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.65rem, 18vw, 5.5rem); }
  .hero__text { font-size: .96rem; }
  .hero-visual { width: min(100%, 540px); min-height: 400px; margin-inline: auto; }
  .visual-orbit--one { right: 0; }.visual-orbit--two { left: 0; }.branch-card { right: 0; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .location-section { margin-top: -16px; padding-bottom: 72px; }
  .location-image-card { min-height: 340px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .skill-overview { padding: 25px; }
  .skill-overview__groups { grid-template-columns: 1fr; gap: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; }
  .feature-card { min-height: auto; }
  .feature-card__icon { margin-bottom: 38px; }
  .game-card { grid-template-columns: 1fr; }
  .game-card__art { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--border); }
  .game-card__art::before { width: 190px; height: 190px; }.game-card__art::after { width: 260px; height: 260px; }
  .game-card__art > svg { width: 85px; height: 85px; }
  .game-card__content { padding: 34px 26px; }
  .project-pair { grid-template-columns: 1fr; gap: 18px; }
  .project-panel__art { min-height: 235px; }
  .project-panel__content { padding: 34px 26px; }
  .learning-targets > div { display: block; }
  .learning-targets > div span { display: block; margin-top: 5px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-hub { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: auto; display: block; }
  .project-card--featured .project-preview { height: 240px; border-right: 0; border-bottom: 1px solid var(--border); }
  .jarvis-intro { grid-template-columns: 1fr; }
  .jarvis-mockup { width: min(100%, 620px); }
  .jarvis-status { grid-template-columns: 1fr; gap: 14px; margin-top: 48px; }
  .jarvis-features { grid-template-columns: 1fr; }
  .jarvis-feature { min-height: 0; }
  .jarvis-learning { grid-template-columns: 1fr; gap: 25px; }
  .experience-card { grid-template-columns: 1fr; gap: 28px; padding: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .mobile-header { padding-inline: 17px; }
  .container { width: min(calc(100% - 28px), var(--content-max)); }
  .section { padding: 64px 0; }
  .section-heading h2, .game-card h2, .jarvis-copy h2, .training-card h2, .contact-copy h2 { font-size: 2.25rem; }
  .hero { padding-top: 116px; background-size: 34px 34px; }
  .hero h1 { font-size: clamp(3.45rem, 18.5vw, 4.6rem); }
  .hero__role { font-size: 1.23rem; }
  .hero .button-row { align-items: stretch; }
  .hero .button { width: 100%; }
  .hero .text-link { width: 100%; justify-content: center; margin: 3px 0 0; padding: 8px; }
  .hero-visual { min-height: 330px; }
  .monitor pre { min-height: 225px; padding: 29px 19px; font-size: .7rem; line-height: 1.75; }
  .visual-orbit--one { top: 2px; width: 57px; height: 57px; font-size: .94rem; }
  .visual-orbit--two { bottom: 10px; width: 48px; height: 48px; }
  .branch-card { bottom: 21px; transform: scale(.8); transform-origin: bottom right; }
  .overview-card { padding: 21px; }
  .overview-card__heading { display: grid; }
  .status { align-items: flex-start; line-height: 1.4; }
  .status i { flex: 0 0 auto; margin-top: 4px; }
  .overview-grid { grid-template-columns: 1fr; gap: 15px; }
  .location-section { padding-bottom: 64px; }
  .location-image-card { min-height: 240px; border-radius: var(--radius-lg); }
  .location-badge { right: 14px; bottom: 14px; left: 14px; width: fit-content; max-width: calc(100% - 28px); }
  .location-info-card { padding: 28px 23px; border-radius: var(--radius-lg); }
  .location-info-card h2 { font-size: 2rem; }
  .location-info-card .button { width: 100%; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-card { min-height: 150px; }
  .quality-card h3 { margin-top: 18px; }
  .skill { grid-template-columns: 1fr; gap: 8px; }
  .skills-panel, .strengths-panel { padding: 23px 20px; }
  .strength-list { grid-template-columns: 1fr; }
  .project-card__body { min-height: 0; }
  .jarvis-mockup figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .mockup-window { padding: 12px; }.mockup-grid { grid-template-columns: 1fr; }.mockup-card--chart, .mockup-card--offline { grid-column: auto; }
  .jarvis-status, .architecture-card, .security-card, .jarvis-learning { padding: 23px 20px; }
  .jarvis-status > div { align-items: flex-start; flex-direction: column; gap: 9px; }
  .architecture-flow { align-items: stretch; flex-direction: column; }.architecture-flow i { transform: none; text-align: center; }
  .architecture-planned { flex-wrap: wrap; }.architecture-planned small { width: 100%; margin: 3px 0 0; }
  .training-card { padding: 31px 22px; border-radius: var(--radius-lg); }
  .training-card h2 br { display: none; }
  .training-card__status { align-items: flex-start; line-height: 1.5; }
  .training-card__status i { flex: 0 0 auto; margin-top: 4px; }
  .training-card .button { width: 100%; }
  .contact-copy h2 br { display: none; }
  .contact-card { padding: 9px 18px; }
  .contact-item { align-items: flex-start; }
  .legal-header .brand small { display: none; }
  .legal-back { font-size: .76rem; }
  .legal-main { padding: 58px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --border: rgba(255, 255, 255, .24); --text-secondary: #ded8d0; }
}
